diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-04-19 12:36:52 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-04-19 12:36:52 +0000 |
commit | d075ecb996562711e3728a8c57e69a14a418c826 (patch) | |
tree | 3f7070d8184732b4b487f2f09dfce7dc9592cbc1 | |
parent | 50362a3afcb1946f404bb7379daa5b03205e6d01 (diff) | |
download | upstream-d075ecb996562711e3728a8c57e69a14a418c826.tar.gz upstream-d075ecb996562711e3728a8c57e69a14a418c826.tar.bz2 upstream-d075ecb996562711e3728a8c57e69a14a418c826.zip |
remove persist in pppoe script until reconnect works reliably in pppd
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@685 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe | 2 |
1 files changed, 1 insertions, 1 deletions
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 18c87ba4b9..c7e6d10fba 100755 --- 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\npersist\nconnect /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 ) & |