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 | |
parent | e31e930825b2e1d122460b42d1a52d1aa8c13f5f (diff) |
Use yesno for more robustness
-rw-r--r-- | net.BSD/iwconfig.sh | 4 | ||||
-rw-r--r-- | net.Linux/ifplugd.sh | 4 | ||||
-rw-r--r-- | net.Linux/iwconfig.sh | 4 | ||||
-rw-r--r-- | net.Linux/netplugd.sh | 4 | ||||
-rw-r--r-- | net.Linux/pppd.sh | 4 | ||||
-rw-r--r-- | net/macchanger.sh | 2 | ||||
-rw-r--r-- | net/wpa_supplicant.sh | 4 | ||||
-rwxr-xr-x | sh/net.sh | 4 |
8 files changed, 15 insertions, 15 deletions
diff --git a/net.BSD/iwconfig.sh b/net.BSD/iwconfig.sh index 98254648..182bc47d 100644 --- a/net.BSD/iwconfig.sh +++ b/net.BSD/iwconfig.sh @@ -554,7 +554,7 @@ iwconfig_configure() { iwconfig_pre_start() { # We don't configure wireless if we're being called from # the background - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 save_options "SSID" "" _exists || return 0 @@ -586,7 +586,7 @@ iwconfig_pre_start() { } iwconfig_post_stop() { - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 _is_wireless || return 0 iwconfig_defaults #iwconfig "${IFACE}" txpower 0 2>/dev/null diff --git a/net.Linux/ifplugd.sh b/net.Linux/ifplugd.sh index 23788a73..3c90f860 100644 --- a/net.Linux/ifplugd.sh +++ b/net.Linux/ifplugd.sh @@ -36,7 +36,7 @@ ifplugd_pre_start() { local pidfile="/var/run/ifplugd.${IFACE}.pid" timeout= args= # We don't start netplug if we're being called from the background - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 _exists || return 0 @@ -99,7 +99,7 @@ ifplugd_pre_start() { } ifplugd_stop() { - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 local pidfile="/var/run/ifplugd.${IFACE}.pid" [ ! -e "${pidfile}" ] && return 0 diff --git a/net.Linux/iwconfig.sh b/net.Linux/iwconfig.sh index 6aa40029..066f2581 100644 --- a/net.Linux/iwconfig.sh +++ b/net.Linux/iwconfig.sh @@ -685,7 +685,7 @@ iwconfig_configure() { iwconfig_pre_start() { # We don't configure wireless if we're being called from # the background - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 save_options "SSID" "" _exists || return 0 @@ -750,7 +750,7 @@ iwconfig_pre_start() { } iwconfig_post_stop() { - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 _exists || return 0 iwconfig_defaults iwconfig "${IFACE}" txpower off 2>/dev/null diff --git a/net.Linux/netplugd.sh b/net.Linux/netplugd.sh index 422bbf1b..160c6a60 100644 --- a/net.Linux/netplugd.sh +++ b/net.Linux/netplugd.sh @@ -39,7 +39,7 @@ netplugd_pre_start() { local pidfile="/var/run/netplugd-${IFACE}.pid" timeout= # We don't start netplug if we're being called from the background - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 _exists || return 0 @@ -101,7 +101,7 @@ netplugd_pre_start() { } netplugd_stop() { - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 local pidfile="/var/run/netplugd-${IFACE}.pid" [ ! -e "${pidfile}" ] && return 0 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 diff --git a/net/macchanger.sh b/net/macchanger.sh index 4febac27..c2dc27f4 100644 --- a/net/macchanger.sh +++ b/net/macchanger.sh @@ -31,7 +31,7 @@ _config_vars="$_config_vars mac" macchanger_pre_start() { # We don't change MAC addresses from background - ${IN_BACKGROUND} && return 0 + yesno ${IN_BACKGROUND} && return 0 local mac= opts= diff --git a/net/wpa_supplicant.sh b/net/wpa_supplicant.sh index 1bdbb9c1..1955905e 100644 --- a/net/wpa_supplicant.sh +++ b/net/wpa_supplicant.sh @@ -80,7 +80,7 @@ wpa_supplicant_pre_start() { # We don't configure wireless if we're being called from # the background unless we're not currently running - if [ "${IN_BACKGROUND}" = "true" ] ; then + if yesno ${IN_BACKGROUND}; then if service_started_daemon "${SVCNAME}" /sbin/wpa_supplicant ; then SSID=$(_get_ssid "${IFACE}") SSIDVAR=$(_shell_var "${SSID}") @@ -186,7 +186,7 @@ wpa_supplicant_post_stop() { wpac=/bin/wpa_cli fi - if [ "${IN_BACKGROUND}" = "true" ] ; then + if yesno "${IN_BACKGROUND}"; then # Only stop wpa_supplicant if it's not the controlling daemon ! service_started_daemon "${SVCNAME}" "${wpas}" 1 fi @@ -28,7 +28,7 @@ MODULESDIR="${RC_LIBDIR}/net" MODULESLIST="${RC_SVCDIR}/nettree" _config_vars="config routes" -[ -z "${IN_BACKGROUND}" ] && IN_BACKGROUND=false +[ -z "${IN_BACKGROUND}" ] && IN_BACKGROUND="NO" description="Configures network interfaces." @@ -644,7 +644,7 @@ stop() { fi done - [ "${IN_BACKGROUND}" != "true" ] && \ + ! yesno ${IN_BACKGROUND} && \ [ "${IFACE}" != "lo" -a "${IFACE}" != "lo0" ] && \ _down 2>/dev/null |