diff options
author | Roy Marples <roy@marples.name> | 2007-11-22 13:28:14 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-11-22 13:28:14 +0000 |
commit | 09c5e5d415d5813f49d871dc0712212a92a695ed (patch) | |
tree | de87f98c3bb02e8cd436ddd8bcf99a2a4d51a65d /net.Linux/pppd.sh | |
parent | e31e930825b2e1d122460b42d1a52d1aa8c13f5f (diff) |
Use yesno for more robustness
Diffstat (limited to 'net.Linux/pppd.sh')
-rw-r--r-- | net.Linux/pppd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net.Linux/pppd.sh b/net.Linux/pppd.sh index 71ffb18a..de63dc95 100644 --- a/net.Linux/pppd.sh +++ b/net.Linux/pppd.sh @@ -45,7 +45,7 @@ pppd_pre_start() { # Set our base metric metric=4000 - if ${IN_BACKGROUND} ; then + if yesno ${IN_BACKGROUND}; then local config= eval config=\$config_${IFVAR} # If no config for ppp then don't default to DHCP @@ -245,7 +245,7 @@ pppd_start() { } pppd_stop() { - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 local pidfile="/var/run/ppp-${IFACE}.pid" [ ! -s "${pidfile}" ] && return 0 |