copy trunk to buildroot-ng branch
[openwrt.git] / package / rp-pppoe / files / pppoe-server.init
1 #!/bin/sh
2
3 DEFAULT=/etc/default/pppoe-server
4 [ -f $DEFAULT ] && . $DEFAULT
5
6 case $1 in
7  start)
8   pppoe-server $OPTIONS
9   ;;
10  *)
11   echo "usage: $0 (start)"
12   exit 1
13 esac
14
15 exit $?