fix pppoe init script

SVN-Revision: 1734
lede-17.01
Felix Fietkau 2005-08-23 12:53:17 +00:00
parent 1bee1d315f
commit b80a2426c5
1 changed files with 27 additions and 24 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
. /etc/nvram.overrides
. /etc/network.overrides
[ -e /etc/config/network ] && . /etc/config/network
type=$1
@ -15,7 +15,7 @@ for module in slhc ppp_generic pppox pppoe; do
done
while :; do
IFNAME=nic-$(nvram get pppoe_ifname)
IFNAME=$(nvram get pppoe_ifname)
USERNAME=$(nvram get ppp_username)
PASSWORD=$(nvram get ppp_passwd)
REDIAL=$(nvram get ppp_redialperiod)
@ -38,5 +38,8 @@ while :; do
$MTU \
$IDLETIME \
$REDIAL \
$IFNAME
nic-$IFNAME
# Read settings again (might have changed)
[ -e /etc/config/network ] && . /etc/config/network
done &