From: Felix Fietkau Date: Mon, 18 Apr 2005 19:34:55 +0000 (+0000) Subject: fix ppp reconnect (add persist option) X-Git-Tag: reboot~33038 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=833f90e2f0f48145d5d8a37474d460777d5cafe3;p=oweals%2Fopenwrt.git fix ppp reconnect (add persist option) SVN-Revision: 674 --- 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 7e635ee790..33143c9158 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 @@ -19,9 +19,10 @@ done IDLETIME=$(nvram get ppp_idletime) IDLETIME=${IDLETIME:+idle $IDLETIME} MTU=$(nvram get ppp_mtu) + MTU=${MTU:+ mtu $MTU mru $MTU} ifconfig $IFNAME up - echo -e "plugin rp-pppoe.so\nconnect /bin/true\nusepeerdns\ndefaultroute\nuser \"$USERNAME\"\npassword \"$PASSWORD\"\nmtu $MTU\n$IDLETIME\n$REDIAL" > /tmp/.pppoe-data + 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 /usr/sbin/pppd nodetach file /tmp/.pppoe-data $IFNAME done ) &