allow spaces in the keepalive option

SVN-Revision: 4781
master
Felix Fietkau 18 years ago
parent 00c9327e77
commit 82962cacd0
  1. 4
      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 \

Loading…
Cancel
Save