16 lines
		
	
	
		
			367 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			367 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env watchman
 | |
| 
 | |
| #service_respawn='true'
 | |
| service_command='/usr/bin/vdevd'
 | |
| service_args=( -f /dev )
 | |
| service_tmpfiles=( '/run/vdev:dir' '/run/udev:symlink:/dev/metadata/udev' )
 | |
| 
 | |
| pre_start() {
 | |
| 	# Ensure that hotplug is empty
 | |
| 	if [[ -f /proc/sys/kernel/hotplug ]]; then
 | |
| 		true > /proc/sys/kernel/hotplug
 | |
| 	fi
 | |
| 
 | |
| 	"$service_command" -1 -f /dev &>"$service_logfile"
 | |
| }
 |