remove persist in pppoe script until reconnect works reliably in pppd
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 19 Apr 2005 12:36:52 +0000 (12:36 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
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

index 18c87ba..c7e6d10 100755 (executable)
@@ -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
 ) &