summaryrefslogtreecommitdiffstats
path: root/openwrt/package/ppp/files
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-03 18:02:34 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-03 18:02:34 +0000
commit651212067733fbe278ea227f84b5180fd0deded9 (patch)
tree5e9ace3eceabdc6caec739df481d0555e8c83dbe /openwrt/package/ppp/files
parenteac0111497d7e9e29aab03a3ff8edeb367214f1c (diff)
remove pppoe init script, add ifup.pppoe for that
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1325 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/ppp/files')
-rw-r--r--openwrt/package/ppp/files/ifup.pppoe (renamed from openwrt/package/ppp/files/pppoe.init)6
1 files changed, 3 insertions, 3 deletions
diff --git a/openwrt/package/ppp/files/pppoe.init b/openwrt/package/ppp/files/ifup.pppoe
index d0cfa261a..caf06f76c 100644
--- a/openwrt/package/ppp/files/pppoe.init
+++ b/openwrt/package/ppp/files/ifup.pppoe
@@ -1,9 +1,9 @@
#!/bin/sh
-
. /etc/functions.sh
+IF_NAME=$1
-WAN_PROTO=$(nvram get wan_proto)
-[ "$WAN_PROTO" = "pppoe" ] || exit 0
+PROTO=$(nvram get ${IF_NAME}_proto)
+[ "$PROTO" = "pppoe" ] || exit 0
for module in slhc ppp_generic pppox pppoe; do
/sbin/insmod $module 2>/dev/null >/dev/null