summaryrefslogtreecommitdiffstats
path: root/package/ppp/files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-09-06 17:36:01 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-09-06 17:36:01 +0000
commit488d168c256a76dc96d05b93affc2a466dac99ff (patch)
tree7cd38a6484d873d8316b13704547d79845f4e734 /package/ppp/files
parent3b61c2c2b161f082bc2ff06a6666f1d32bed667f (diff)
downloadmaster-31e0f0ae-488d168c256a76dc96d05b93affc2a466dac99ff.tar.gz
master-31e0f0ae-488d168c256a76dc96d05b93affc2a466dac99ff.tar.bz2
master-31e0f0ae-488d168c256a76dc96d05b93affc2a466dac99ff.zip
move ppp ifname fixup from pppoe.sh to ppp.sh, so that it applies to all other ppp based protocols as well
SVN-Revision: 17529
Diffstat (limited to 'package/ppp/files')
-rw-r--r--package/ppp/files/ppp.sh6
-rw-r--r--package/ppp/files/pppoe.sh5
2 files changed, 6 insertions, 5 deletions
diff --git a/package/ppp/files/ppp.sh b/package/ppp/files/ppp.sh
index bfa708dadc..8dfdab7a0b 100644
--- a/package/ppp/files/ppp.sh
+++ b/package/ppp/files/ppp.sh
@@ -17,6 +17,12 @@ scan_ppp() {
start_pppd() {
local cfg="$1"; shift
+ local ifname
+
+ # make sure the network state references the correct ifname
+ scan_ppp "$cfg"
+ config_get ifname "$cfg" ifname
+ set_interface_ifname "$cfg" "$ifname"
# make sure only one pppd process is started
lock "/var/lock/ppp-${cfg}"
diff --git a/package/ppp/files/pppoe.sh b/package/ppp/files/pppoe.sh
index c0bb515162..74f1a8579c 100644
--- a/package/ppp/files/pppoe.sh
+++ b/package/ppp/files/pppoe.sh
@@ -10,11 +10,6 @@ setup_interface_pppoe() {
/sbin/insmod $module 2>&- >&-
done
- # make sure the network state references the correct ifname
- scan_ppp "$config"
- config_get ifname "$config" ifname
- set_interface_ifname "$config" "$ifname"
-
config_get mtu "$config" mtu
mtu=${mtu:-1492}
start_pppd "$config" \