migration of open-etc-friends-pool for use with Etica/EGAZ
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
422 B

# open-etc-pool
description "open-etc-pool"
env DAEMON=/home/main/src/open-etc-pool/build/bin/open-etc-pool
env CONFIG=/home/main/src/open-etc-pool/config.json
start on filesystem or runlevel [2345]
stop on runlevel [!2345]
setuid main
setgid main
kill signal INT
respawn
respawn limit 10 5
umask 022
pre-start script
test -x $DAEMON || { stop; exit 0; }
end script
# Start
script
exec $DAEMON $CONFIG
end script