11 lines
		
	
	
		
			284 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			284 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
#!/sbin/openrc-run
 | 
						|
name="STEP"
 | 
						|
description="An HTTP server that automaticaly executes STEP files"
 | 
						|
pidfile="/run/${RC_SVCNAME}.pid"
 | 
						|
command="/usr/local/bin/stepd"
 | 
						|
command_args="--pid-file ${pidfile} --user step:step --log-directory /var/log/step /srv/www-step"
 | 
						|
 | 
						|
depend() {
 | 
						|
	need net
 | 
						|
}
 |