1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/bin/sh exec 2>&1 PATH=/bin:/sbin:/command echo 'Waiting for services to stop...' svwaitdown -xk -t350 /service/* echo 'Shutdown...' if test -r /etc/runit/reboot; then exec reboot else exec halt fi exit 0