diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-09-12 00:34:46 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-09-12 00:34:46 +0000 |
commit | 82962cacd0f3f81f4980faa2018c94dc2ffd3f7c (patch) | |
tree | 059f7d7574c4cc8766071e422918bb2b1ab8a1f9 | |
parent | 00c9327e778ff6ab4aa2952b34b019228d031fab (diff) | |
download | mtk-20170518-82962cacd0f3f81f4980faa2018c94dc2ffd3f7c.zip mtk-20170518-82962cacd0f3f81f4980faa2018c94dc2ffd3f7c.tar.gz mtk-20170518-82962cacd0f3f81f4980faa2018c94dc2ffd3f7c.tar.bz2 |
allow spaces in the keepalive option
SVN-Revision: 4781
-rw-r--r-- | openwrt/package/ppp/files/ppp.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/ppp/files/ppp.sh b/openwrt/package/ppp/files/ppp.sh index e6008f4..51a1955 100644 --- a/openwrt/package/ppp/files/ppp.sh +++ b/openwrt/package/ppp/files/ppp.sh @@ -13,13 +13,13 @@ start_pppd() { config_get username "$cfg" username config_get password "$cfg" password config_get keepalive "$cfg" keepalive - interval="${keepalive%%*,}" + interval="${keepalive%%*[, ]}" [ "$interval" != "$keepalive" ] || interval=5 config_get demand "$cfg" demand [ -n "$demand" ] && echo "nameserver 1.1.1.1" > /tmp/resolv.conf /usr/sbin/pppd "$@" \ - ${keepalive:+lcp-echo-interval $interval lcp-echo-failure ${keepalive##,*}} \ + ${keepalive:+lcp-echo-interval $interval lcp-echo-failure ${keepalive##[, ]*}} \ ${demand:+precompiled-active-filter /etc/ppp/filter demand idle }${demand:-persist} \ usepeerdns \ defaultroute \ |