1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 01:43:08 +02:00

allow the user to disable the defaultroute option for ppp

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8569 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-09-01 12:57:15 +00:00
parent 947d2b4338
commit 17b183947d

View File

@ -26,6 +26,8 @@ start_pppd() {
config_get connect "$cfg" connect
config_get disconnect "$cfg" disconnect
config_get pppd_options "$cfg" pppd_options
config_get_bool defaultroute "$cfg" defaultroute 1
[ "$defaultroute" -eq 1 ] && defaultroute="defaultroute replacedefaultroute" || defaultroute=""
interval="${keepalive##*[, ]}"
[ "$interval" != "$keepalive" ] || interval=5
@ -36,8 +38,7 @@ start_pppd() {
${keepalive:+lcp-echo-interval $interval lcp-echo-failure ${keepalive%%[, ]*}} \
${demand:+precompiled-active-filter /etc/ppp/filter demand idle }${demand:-persist} \
usepeerdns \
defaultroute \
replacedefaultroute \
$defaultroute \
${username:+user "$username" password "$password"} \
unit "$unit" \
linkname "$cfg" \