diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-07-11 21:17:45 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-07-11 21:17:45 +0000 |
commit | 4905ec691b1bd411b79b5038320ce9f35834868f (patch) | |
tree | 781f7fa2474932a4295b118aeea11a97c4573d9c /openwrt/package/rp-pppoe/files/pppoe-client.init | |
parent | d79a95028528794226418c28bf072b046a34b9d8 (diff) | |
download | mtk-20170518-4905ec691b1bd411b79b5038320ce9f35834868f.zip mtk-20170518-4905ec691b1bd411b79b5038320ce9f35834868f.tar.gz mtk-20170518-4905ec691b1bd411b79b5038320ce9f35834868f.tar.bz2 |
Add rp-pppoe package
SVN-Revision: 1413
Diffstat (limited to 'openwrt/package/rp-pppoe/files/pppoe-client.init')
-rw-r--r-- | openwrt/package/rp-pppoe/files/pppoe-client.init | 12 |
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 0000000..fb3f4ca --- /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 $? |