diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-11 21:17:45 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-11 21:17:45 +0000 |
commit | bbda9e1ac06fc3173bd6572c81c1a2480068fd7f (patch) | |
tree | ed44720e0b6b73c612f1bc26fecf553cb3124d3b /package/rp-pppoe/files/pppoe-client.init | |
parent | d1a6070a58757d19d100a7def47a24d48745d1d3 (diff) |
Add rp-pppoe package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1413 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/rp-pppoe/files/pppoe-client.init')
-rw-r--r-- | package/rp-pppoe/files/pppoe-client.init | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/rp-pppoe/files/pppoe-client.init b/package/rp-pppoe/files/pppoe-client.init new file mode 100644 index 000000000..fb3f4ca3e --- /dev/null +++ b/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 $? |