updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / kannel / rc.kannel
blob13d439610269ff1e50bc4fbcd0cc4e00d44294c9
1 #!/bin/bash
3 . /etc/rc.conf
4 . /etc/rc.d/functions
6 case "$1" in
7 start)
8 /etc/rc.d/bearerbox start
9 /etc/rc.d/smsbox start
10 /etc/rc.d/wapbox start
12 stop)
13 /etc/rc.d/wapbox stop
14 /etc/rc.d/smsbox stop
15 /etc/rc.d/bearerbox stop
17 restart)
18 $0 stop
19 sleep 3
20 $0 start
23 echo "usage: $0 {start|stop|restart}"
24 esac
25 exit 0