mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 16:31:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			211 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			211 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/sbin/openrc-run
 | |
| 
 | |
| # PIMD init.d file for alpine linux.
 | |
| 
 | |
| name=pimd
 | |
| command="/usr/sbin/$name"
 | |
| command_args="$pimd_opts"
 | |
| command_background="yes"
 | |
| 
 | |
| pidfile="/run/$name.pid"
 | |
| 
 | |
| depend() {
 | |
| 	need net
 | |
| 	after firewall
 | |
| }
 |