toolchain: enable parallel building for gcc, glibc, binutils, gmp and mpfr
[openadk.git] / package / rp-pppoe / files / pppoe-client.init
blobea00f57f040986bf82a67c19f786ae7819d343f1
1 #!/bin/sh
2 #PKG pppoe-server
3 #INIT 50
5 . /etc/rc.conf
7 case $1 in
8 autostop) ;;
9 autostart)
10 test x"${pppoe_client:-NO}" = x"NO" && exit 0
11 exec sh $0 start
13 start)
14 adsl-start
16 stop)
17 adsl-stop
19 restart)
20 sh $0 stop
21 sh $0 start
24 echo "Usage: $0 {start | stop | restart}"
25 exit 1
27 esac
28 exit $?