Initial commit: Uploaded everything from abs/core
[arch-rock.git] / support / ppp / ppp
blob16e01bad79d0ee1ec42fdb748cf9c9c7e5342f68
1 #!/bin/bash
3 . /etc/rc.conf
4 . /etc/rc.d/functions
6 PID=`pidof -o %PPID /usr/sbin/pppd`
7 case "$1" in
8 start)
9 stat_busy "Starting PPP daemon"
10 [ -z "$PID" ] && /usr/bin/pon
11 if [ $? -gt 0 ]; then
12 stat_fail
13 else
14 add_daemon ppp
15 stat_done
18 stop)
19 stat_busy "Stopping PPP daemon"
20 [ ! -z "$PID" ] && poff -a &> /dev/null
21 if [ $? -gt 0 ]; then
22 stat_fail
23 else
24 rm_daemon ppp
25 stat_done
28 restart)
29 $0 stop
30 sleep 1
31 $0 start
34 echo "usage: $0 {start|stop|restart}"
35 esac
36 exit 0