mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 06:49:42 +02:00
[package] ppp: interpret "demand" option as timeout in seconds (#7517)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21903 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d04b55e43c
commit
2d6dd9f18a
@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
|
|||||||
|
|
||||||
PKG_NAME:=ppp
|
PKG_NAME:=ppp
|
||||||
PKG_VERSION:=2.4.4
|
PKG_VERSION:=2.4.4
|
||||||
PKG_RELEASE:=7
|
PKG_RELEASE:=8
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/
|
PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/
|
||||||
|
@ -92,11 +92,11 @@ start_pppd() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
local demand
|
local demand
|
||||||
config_get_bool demand "$cfg" demand 0
|
config_get demand "$cfg" demand 0
|
||||||
|
|
||||||
local demandargs
|
local demandargs
|
||||||
[ "$demand" -eq 1 ] && {
|
[ "$demand" -gt 0 ] && {
|
||||||
demandargs="precompiled-active-filter /etc/ppp/filter demand idle"
|
demandargs="precompiled-active-filter /etc/ppp/filter demand idle $demand"
|
||||||
[ "$has_dns" -eq 0 ] && add_dns "$cfg" 1.1.1.1
|
[ "$has_dns" -eq 0 ] && add_dns "$cfg" 1.1.1.1
|
||||||
} || {
|
} || {
|
||||||
demandargs="persist"
|
demandargs="persist"
|
||||||
|
Loading…
Reference in New Issue
Block a user