16 lines
367 B
Plaintext
Raw Normal View History

2015-05-13 14:30:54 +03:00
#!/usr/bin/env watchman
#service_respawn='true'
service_command='/usr/bin/vdevd'
2015-09-04 16:47:37 +03:00
service_args=( -f /dev )
2015-08-22 20:37:10 +03:00
service_tmpfiles=( '/run/vdev:dir' '/run/udev:symlink:/dev/metadata/udev' )
2015-10-13 12:34:00 +03:00
pre_start() {
# Ensure that hotplug is empty
if [[ -f /proc/sys/kernel/hotplug ]]; then
true > /proc/sys/kernel/hotplug
fi
2015-10-31 18:07:33 +03:00
"$service_command" -1 -f /dev &>"$service_logfile"
2015-10-13 12:34:00 +03:00
}