let ipkg fail when a package file to be installed is not found
[openwrt/staging/wigyori.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 $?