fb3f4ca3e833e1c4c3db11df47b5d24c50f4d0c5
[openwrt/staging/dedeckeh.git] / openwrt / package / rp-pppoe / files / pppoe-client.init
1 #!/bin/sh
2
3 case "$1" in
4 start|stop)
5 adsl-$1
6 ;;
7 *)
8 echo "usage: $0 {start|stop}"
9 exit 1
10 esac
11
12 exit $?