summaryrefslogtreecommitdiff
path: root/openwrt/package/rp-pppoe/files/pppoe-relay.init
blob: d8212f2588368cca546b80c8c16ccff4135acc3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

DEFAULT=/etc/default/pppoe-relay
[ -f $DEFAULT ] && . $DEFAULT

case $1 in
 start)
  pppoe-relay $OPTIONS
  ;;
 *)
  echo "usage: $0 (start)"
  exit 1
esac

exit $?