summaryrefslogtreecommitdiff
path: root/openwrt/package/rp-pppoe/files/pppoe-client.init
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-11 21:17:45 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-11 21:17:45 +0000
commit53571b35bf70fe66bccbd5212a7f1009b153a57f (patch)
tree781f7fa2474932a4295b118aeea11a97c4573d9c /openwrt/package/rp-pppoe/files/pppoe-client.init
parent2e636bda64e3e8118acfbc32308138044cf393b8 (diff)
Add rp-pppoe package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1413 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/rp-pppoe/files/pppoe-client.init')
-rw-r--r--openwrt/package/rp-pppoe/files/pppoe-client.init12
1 files changed, 12 insertions, 0 deletions
diff --git a/openwrt/package/rp-pppoe/files/pppoe-client.init b/openwrt/package/rp-pppoe/files/pppoe-client.init
new file mode 100644
index 0000000000..fb3f4ca3e8
--- /dev/null
+++ b/openwrt/package/rp-pppoe/files/pppoe-client.init
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+case "$1" in
+ start|stop)
+ adsl-$1
+ ;;
+ *)
+ echo "usage: $0 {start|stop}"
+ exit 1
+esac
+
+exit $?