Sha256: 9a862d9d66559b518fee2e4a3c62b6687f4391247a2db7362d537baf3f9fff3c
Contents?: true
Size: 697 Bytes
Versions: 19
Compression:
Stored size: 697 Bytes
Contents
#!/sbin/runscript # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { after net } start() { ebegin "Starting runsvdir" start-stop-daemon --start --exec /usr/bin/runsvdir \ --background --make-pidfile \ --pidfile /var/run/runsvdir.pid -- <%= node.runit.sv_dir %> eend $? } stop() { local ret1 ret2 ebegin "Stopping runsvdir" start-stop-daemon --stop --oknodo --pidfile /var/run/runsvdir.pid ret1=$? eend ${ret1} ebegin "Stopping services and logging" sv shutdown -w 10 <%= node.runit.sv_dir %>/* ret2=$? eend ${ret2} return $((ret1+ret2)) }
Version data entries
19 entries across 17 versions & 7 rubygems