updated on Fri Jan 20 12:03:34 UTC 2012
[aur-mirror.git] / swapd / swapd.init
blob08545121109baefcf8b1691e95b575b63c11c367
1 #!/bin/bash
3 # source application-specific settings
5 . /etc/rc.conf
6 . /etc/rc.d/functions
8 PID=`pidof -o %PPID /usr/sbin/swapd`
9 case "$1" in
10 start)
11 stat_busy "Starting SWAPD Daemon"
12 [ -z "$PID" ] && /usr/sbin/swapd
13 if [ $? -gt 0 ]; then
14 stat_fail
15 else
16 add_daemon swapd
17 stat_done
20 stop)
21 stat_busy "Stopping SWAPD Daemon"
22 [ ! -z "$PID" ] && kill $PID &> /dev/null
23 if [ $? -gt 0 ]; then
24 stat_fail
25 else
26 rm_daemon swapd
27 stat_done
30 restart)
31 $0 stop
32 sleep 1
33 $0 start
36 echo "usage: $0 {start|stop|restart}"
37 esac
38 exit 0