updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / sleep / sleep
blob1c83986e5d2a55373af5f63b26727f1f763d4dcf
1 #!/bin/bash
3 . /etc/rc.conf
4 . /etc/rc.d/functions
6 case "$1" in
7 start)
8 stat_busy "Sleeping 10 seconds"
9 sleep 10
10 stat_done
12 stop)
14 restart)
15 $0 stop
16 $0 start
19 echo "usage: $0 {start|stop|restart}"
20 esac
21 exit 0