summaryrefslogtreecommitdiffstats
path: root/openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-19 12:36:52 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-19 12:36:52 +0000
commitb28cd70077f8958ba005b8a6522963caaa8499f1 (patch)
tree2711cd402a2891679b88c7f0470eea050e776d35 /openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc
parent34cdab19744c5a3319db7aa1d867bd3d928c8807 (diff)
remove persist in pppoe script until reconnect works reliably in pppd
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@685 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc')
-rwxr-xr-xopenwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe2
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe b/openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe
index 18c87ba4b..c7e6d10fb 100755
--- a/openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe
+++ b/openwrt/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
) &