From: John Crispin Date: Tue, 1 Jul 2014 10:26:07 +0000 (+0000) Subject: ppp: fix keep alive option X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=ef9c64566e4c961334af51afac8896db1007745b;p=15.05%2Fopenwrt.git ppp: fix keep alive option currently the keepalive option needs to be removed to fully disable it. this patch allows us to set it to 0. Signed-off-by: John Crispin git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41438 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/network/services/ppp/files/ppp.sh b/package/network/services/ppp/files/ppp.sh index 4447d061a7..8f4cdebcef 100755 --- a/package/network/services/ppp/files/ppp.sh +++ b/package/network/services/ppp/files/ppp.sh @@ -32,7 +32,7 @@ ppp_generic_setup() { else demand="persist" fi - + [ "${keepalive:-0}" -lt 1 ] && keepalive="" [ -n "$mtu" ] || json_get_var mtu mtu [ -n "$pppname" ] || pppname="${proto:-ppp}-$config"