summaryrefslogtreecommitdiff
path: root/package/rp-pppoe/files/pppoe-client.init
diff options
context:
space:
mode:
authorThorsten Glaser <tg@mirbsd.org>2014-05-04 00:11:56 +0000
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-04 02:21:31 +0200
commitb7856cc45d5bd5485c805f028722a1961c83a23a (patch)
tree498556c3513f8da6ee9deb79ed1339fb9d44eade /package/rp-pppoe/files/pppoe-client.init
parentfbfcdd5f26b463f05f51b5004ff2ded269e57e77 (diff)
rename init scripts so their basename matches their enabler variable
Diffstat (limited to 'package/rp-pppoe/files/pppoe-client.init')
-rw-r--r--package/rp-pppoe/files/pppoe-client.init28
1 files changed, 0 insertions, 28 deletions
diff --git a/package/rp-pppoe/files/pppoe-client.init b/package/rp-pppoe/files/pppoe-client.init
deleted file mode 100644
index 9dd9c597e..000000000
--- a/package/rp-pppoe/files/pppoe-client.init
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#PKG pppoe-server
-#INIT 50
-. /etc/rc.conf
-
-case $1 in
-autostop) ;;
-autostart)
- test x"${pppoe_client:-NO}" = x"NO" && exit 0
- test x"$pppoe_client" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
- exec sh $0 start
- ;;
-start)
- adsl-start
- ;;
-stop)
- adsl-stop
- ;;
-restart)
- sh $0 stop
- sh $0 start
- ;;
-*)
- echo "Usage: $0 {start | stop | restart}"
- exit 1
- ;;
-esac
-exit $?