aboutsummaryrefslogtreecommitdiffstats
path: root/testing/rp-pppoe/rp-pppoe.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/rp-pppoe/rp-pppoe.initd')
-rw-r--r--testing/rp-pppoe/rp-pppoe.initd30
1 files changed, 0 insertions, 30 deletions
diff --git a/testing/rp-pppoe/rp-pppoe.initd b/testing/rp-pppoe/rp-pppoe.initd
deleted file mode 100644
index 3e6ce3edba..0000000000
--- a/testing/rp-pppoe/rp-pppoe.initd
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting PPPOE Server"
- test -x /usr/sbin/pppoe-server -a -f /etc/ppp/pppoe-server-options || exit 0
- start-stop-daemon --start --exec /usr/sbin/pppoe-server -- ${PPPOE_PARAMS}
- echo 1 > /proc/sys/net/ipv4/ip_forward
- eend $?
-}
-
-stop () {
- ebegin "Stopping PPPOE Server"
- start-stop-daemon --stop --exec /usr/sbin/pppoe-server
- echo 0 > /proc/sys/net/ipv4/ip_forward
- eend $?
-}
-
-restart () {
- ebegin "Restarting PPPOE Server"
- start-stop-daemon --stop --exec /usr/sbin/pppoe-server
- sleep 1
- start-stop-daemon --start --exec /usr/sbin/pppoe-server -- ${PPPOE_PARAMS}
- echo 1 > /proc/sys/net/ipv4/ip_forward
- echo "."
-}
-