projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50362a3
)
remove persist in pppoe script until reconnect works reliably in pppd
author
Felix Fietkau
<nbd@openwrt.org>
Tue, 19 Apr 2005 12:36:52 +0000
(12:36 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Tue, 19 Apr 2005 12:36:52 +0000
(12:36 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@685
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe
patch
|
blob
|
history
diff --git
a/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe
b/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe
index
18c87ba
..
c7e6d10
100755
(executable)
--- a/
package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe
+++ b/
package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe
@@
-22,7
+22,7
@@
done
MTU=${MTU:+ mtu $MTU mru $MTU}
ifconfig $IFNAME up
- echo -e "plugin rp-pppoe.so\n
persist\n
connect /bin/true\nusepeerdns\ndefaultroute\nuser \"$USERNAME\"\npassword \"$PASSWORD\"\n$MTU\n$IDLETIME\n$REDIAL" > /tmp/.pppoe-data
+ echo -e "plugin rp-pppoe.so\nconnect /bin/true\nusepeerdns\ndefaultroute\nuser \"$USERNAME\"\npassword \"$PASSWORD\"\n$MTU\n$IDLETIME\n$REDIAL" > /tmp/.pppoe-data
/usr/sbin/pppd nodetach file /tmp/.pppoe-data $IFNAME
done
) &