openbsd-ports/sysutils/runit/files/rc.shutdown
2005-02-23 21:54:08 +00:00

13 lines
234 B
Plaintext

# Stop runit services
echo -n 'Waiting for services to stop...'
/usr/local/sbin/svwaitdown -k -t350 /service/*
if [ $? -eq 0 ]; then
echo 'ok.'
elif [ $? -eq 111 ]; then
echo 'timeout.'
else
echo 'ok. $? services had errors.'
fi