mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 07:01:44 +02:00
allow spaces in the keepalive option
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4781 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
1da81d312c
commit
2ab3bb9aec
@ -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…
Reference in New Issue
Block a user