scripts: fix wrong usage of '==' operator
authorJohn Crispin <john@openwrt.org>
Tue, 14 Oct 2014 12:21:11 +0000 (12:21 +0000)
committerJohn Crispin <john@openwrt.org>
Tue, 14 Oct 2014 12:21:11 +0000 (12:21 +0000)
[base-files] shell-scripting: fix wrong usage of '==' operator

normally the '==' is used for invoking a regex parser and is a bashism.
all of the fixes just want to compare a string. the used busybox-ash
will silently "ignore" this mistake, but make it portable/clean at least.

this patch does not change the behavior/logic of the scripts.

Signed-off-by: Bastian Bittorf <bittorf@bluebottle.com>
SVN-Revision: 42911

23 files changed:
package/base-files/files/lib/functions/uci-defaults-new.sh
package/base-files/files/lib/functions/uci-defaults.sh
package/base-files/files/sbin/led.sh
package/base-files/files/sbin/wifi
package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh
package/network/config/qos-scripts/files/usr/bin/qos-stat
package/network/services/dropbear/files/dropbear.init
package/network/services/hostapd/files/wpa_supplicant.sh
package/network/services/openvpn/files/openvpn.init
package/network/services/relayd/files/relay.init
package/system/fstools/files/snapshot
package/system/procd/files/nand.sh
package/system/procd/files/procd.sh
scripts/flashing/flash.sh
target/linux/ar71xx/base-files/etc/uci-defaults/03_network-switchX-migration
target/linux/ar71xx/base-files/etc/uci-defaults/04_led_migration
target/linux/brcm2708/image/gen_rpi_sdcard_img.sh
target/linux/brcm47xx/base-files/lib/preinit/15_set_preinit_interface_brcm
target/linux/ixp4xx/base-files/lib/preinit/05_set_ether_mac_ixp4xx
target/linux/ramips/base-files/etc/hotplug.d/usb/10-motion
target/linux/ramips/base-files/lib/preinit/04_handle_checksumming
target/linux/sunxi/image/gen_sunxi_sdcard_img.sh
target/linux/x86_64/image/gen_image_generic.sh

index ba954dee21fc563832795cedf5dc7fe76c2922aa..0751744dcbc248c8c8fa8cc5dbdcdbcef027a888 100755 (executable)
@@ -34,7 +34,7 @@ _ucidef_set_interface() {
 
        json_select_object $name
        json_add_string ifname "${iface%%.*}"
 
        json_select_object $name
        json_add_string ifname "${iface%%.*}"
-       [ "$iface" == "${iface%%.*}" ] || json_add_boolean create_vlan 1
+       [ "$iface" = "${iface%%.*}" ] || json_add_boolean create_vlan 1
        json_select ..
 }
 
        json_select ..
 }
 
index 798d6baa792b306a2f7b97174c207194ba7c38eb..6ed0bf1176045ce8aa108dcc388badcd363a2061 100644 (file)
@@ -140,7 +140,7 @@ EOF
 
 ucidef_commit_leds()
 {
 
 ucidef_commit_leds()
 {
-       [ "$UCIDEF_LEDS_CHANGED" == "1" ] && uci commit system
+       [ "$UCIDEF_LEDS_CHANGED" = "1" ] && uci commit system
 }
 
 ucidef_set_interface_loopback() {
 }
 
 ucidef_set_interface_loopback() {
index d67a0f51ccdfee75f52aa2e48ec05248eed056e1..d750f06ea7909339d57b087b7d8003a763239bbd 100755 (executable)
@@ -9,15 +9,15 @@ do_led() {
        local sysfs
        config_get name $1 name
        config_get sysfs $1 sysfs
        local sysfs
        config_get name $1 name
        config_get sysfs $1 sysfs
-       [ "$name" == "$NAME" -o "$sysfs" = "$NAME" -a -e "/sys/class/leds/${sysfs}" ] && {
-               [ "$ACTION" == "set" ] &&
+       [ "$name" = "$NAME" -o "$sysfs" = "$NAME" -a -e "/sys/class/leds/${sysfs}" ] && {
+               [ "$ACTION" = "set" ] &&
                        echo 1 >/sys/class/leds/${sysfs}/brightness \
                        || echo 0 >/sys/class/leds/${sysfs}/brightness
                exit 0
        }
 }
 
                        echo 1 >/sys/class/leds/${sysfs}/brightness \
                        || echo 0 >/sys/class/leds/${sysfs}/brightness
                exit 0
        }
 }
 
-[ "$1" == "clear" -o "$1" == "set" ] &&
+[ "$1" = "clear" -o "$1" = "set" ] &&
        [ -n "$2" ] &&{
                config_load system
                config_foreach do_led
        [ -n "$2" ] &&{
                config_load system
                config_foreach do_led
index 051bc89a2d9e3b7dcb643bffc22c5f9c665b64d1..247641433748d669123d3c6e1c163a2dc0314f2e 100755 (executable)
@@ -108,7 +108,7 @@ wifi_fixup_hwmode() {
 _wifi_updown() {
        for device in ${2:-$DEVICES}; do (
                config_get disabled "$device" disabled
 _wifi_updown() {
        for device in ${2:-$DEVICES}; do (
                config_get disabled "$device" disabled
-               [ 1 == "$disabled" ] && {
+               [ "$disabled" = "1" ] && {
                        echo "'$device' is disabled"
                        set disable
                }
                        echo "'$device' is disabled"
                        set disable
                }
index e6241deb5f8c115033cc9264fe9b2830e1e77c56..918955a98a4dd465ae9af2953d1eb41453ccd0bc 100644 (file)
@@ -476,7 +476,7 @@ mac80211_setup_adhoc() {
        json_get_vars bssid ssid key mcast_rate
 
        keyspec=
        json_get_vars bssid ssid key mcast_rate
 
        keyspec=
-       [ "$auth_type" == "wep" ] && {
+       [ "$auth_type" = "wep" ] && {
                set_default key 1
                case "$key" in
                        [1234])
                set_default key 1
                case "$key" in
                        [1234])
index 78d163888b3e9410e72899221a159b8453e0c226..cbbf8e8de89c6818bea1d9c098d03985a5602dd2 100755 (executable)
@@ -11,12 +11,12 @@ get_ifname() {
 
        scan_interfaces
        config_get cfgt "$interface" TYPE
 
        scan_interfaces
        config_get cfgt "$interface" TYPE
-       [ "$cfgt" == "interface" ] && config_get "$interface" ifname
+       [ "$cfgt" = "interface" ] && config_get "$interface" ifname
 }
 
 config_cb() {
        config_get TYPE "$CONFIG_SECTION" TYPE
 }
 
 config_cb() {
        config_get TYPE "$CONFIG_SECTION" TYPE
-       [ "interface" == "$TYPE" ] && {
+       [ "interface" = "$TYPE" ] && {
                config_get device "$CONFIG_SECTION" ifname
                [ -z "$device" ] && device="$(get_ifname ${CONFIG_SECTION})"
                config_set "$CONFIG_SECTION" device "$device"
                config_get device "$CONFIG_SECTION" ifname
                [ -z "$device" ] && device="$(get_ifname ${CONFIG_SECTION})"
                config_set "$CONFIG_SECTION" device "$device"
index 860235e9b7e013a637d0106feae8fd6b4734c7f0..6de0142728dfa127652ecceef1d25080069d800a 100755 (executable)
@@ -165,7 +165,7 @@ killclients()
                skip=0
                for server in ${ignore}
                 do
                skip=0
                for server in ${ignore}
                 do
-                       if [ "${pid}" == "${server}" ]
+                       if [ "${pid}" = "${server}" ]
                         then
                                skip=1
                                break
                         then
                                skip=1
                                break
index bd8680157a4aaca86325972fcb582a8bef0d1000..b6784843e8ea99763796d9bfe772b004468e7304 100644 (file)
@@ -186,7 +186,7 @@ network={
        $wep_tx_keyidx
 }
 EOF
        $wep_tx_keyidx
 }
 EOF
-       if [ -n "$proto" -o "$key_mgmt" == "NONE" ]; then
+       if [ -n "$proto" -o "$key_mgmt" = "NONE" ]; then
                wpa_supplicant ${bridge:+ -b $bridge} -B -P "/var/run/wifi-${ifname}.pid" -D ${driver:-wext} -i "$ifname" -c /var/run/wpa_supplicant-$ifname.conf $options
        else
                return 0
                wpa_supplicant ${bridge:+ -b $bridge} -B -P "/var/run/wifi-${ifname}.pid" -D ${driver:-wext} -i "$ifname" -c /var/run/wpa_supplicant-$ifname.conf $options
        else
                return 0
index f3068f0bd338fd8bd0ea6638220a2b4c09b76c43..9822f1e058b90ee8d1d7e405ccdd94652d87785a 100644 (file)
@@ -29,7 +29,7 @@ append_bools() {
        local p; local v; local s="$1"; shift
        for p in $*; do
                config_get_bool v "$s" "$p"
        local p; local v; local s="$1"; shift
        for p in $*; do
                config_get_bool v "$s" "$p"
-               [ "$v" == 1 ] && append_param "$s" "$p" && echo >> "/var/etc/openvpn-$s.conf"
+               [ "$v" = 1 ] && append_param "$s" "$p" && echo >> "/var/etc/openvpn-$s.conf"
        done
 }
 
        done
 }
 
index e38143f6e733c4700ee05e299a7e8522f373ff07..3635e9c4bdf48782a81357dde66956fb8da45d34 100644 (file)
@@ -39,7 +39,7 @@ start_relay() {
        local ifaces=""
 
        config_get proto "$cfg" proto
        local ifaces=""
 
        config_get proto "$cfg" proto
-       [[ "$proto" == relay ]] || return 0
+       [ "$proto" = "relay" ] || return 0
 
        SERVICE_DAEMONIZE=1
        SERVICE_WRITE_PID=1
 
        SERVICE_DAEMONIZE=1
        SERVICE_WRITE_PID=1
index 1450e12458a54dd7e27d6199b0744f1f430748d6..a0e0ec0c334ca72086c3e30c62ae988c61ff1bde 100644 (file)
@@ -38,16 +38,16 @@ do_config_push() {
 
 do_snapshot_upgrade() {
        opkg update
 
 do_snapshot_upgrade() {
        opkg update
-       [ $? == 0 ] || exit 1
+       [ $? -eq 0 ] || exit 1
 
        opkg list-upgradable
 
        opkg list-upgradable
-       [ $? == 0 ] || exit 2
+       [ $? -eq 0 ] || exit 2
        
        UPDATES=`opkg list-upgradable | cut -d" " -f1`
        [ -z "${UPDATES}" ] && exit 0
 
        opkg upgrade ${UPDATES}
        
        UPDATES=`opkg list-upgradable | cut -d" " -f1`
        [ -z "${UPDATES}" ] && exit 0
 
        opkg upgrade ${UPDATES}
-       [ $? == 0 ] || exit 3
+       [ $? -eq 0 ] || exit 3
 
        do_snapshot_push
        sleep 5
 
        do_snapshot_push
        sleep 5
index fd2f943ba39d6168baca40fdb523904ad869e0c7..f933629e8e146a974daa2564960db5e85dbf1e3e 100644 (file)
@@ -274,8 +274,8 @@ nand_do_upgrade_stage2() {
 
        [ ! "$(find_mtd_index "$CI_UBIPART")" ] && CI_UBIPART="rootfs"
 
 
        [ ! "$(find_mtd_index "$CI_UBIPART")" ] && CI_UBIPART="rootfs"
 
-       [ "$file_type" == "ubi" ] && nand_upgrade_ubinized $1
-       [ "$file_type" == "ubifs" ] && nand_upgrade_ubifs $1
+       [ "$file_type" = "ubi" ] && nand_upgrade_ubinized $1
+       [ "$file_type" = "ubifs" ] && nand_upgrade_ubifs $1
        nand_upgrade_tar $1
 }
 
        nand_upgrade_tar $1
 }
 
index 109daee64c269824426b4d08ada05aacb2b235cc..be1d888a196e429776211e184903f736f0364e1e 100644 (file)
@@ -93,7 +93,7 @@ _procd_add_table_data() {
        while [ -n "$1" ]; do
                local var="${1%%=*}"
                local val="${1#*=}"
        while [ -n "$1" ]; do
                local var="${1%%=*}"
                local val="${1#*=}"
-               [[ "$1" == "$val" ]] && val=
+               [ "$1" = "$val" ] && val=
                json_add_string "$var" "$val"
                shift
        done
                json_add_string "$var" "$val"
                shift
        done
index 8841c3568464932c88da8ddd3890f1395690ad72..3499581ef458cc6f4875a11b82f1979fb3123c69 100755 (executable)
@@ -49,17 +49,17 @@ Notes for Toshiba router:
 EOF
     exit 0
 fi
 EOF
     exit 0
 fi
-if [ "$2" == "asus" ]; then
+if [ "$2" = "asus" ]; then
 echo Confirming IP address setting...
 echo -en "get ASUSSPACELINK\x01\x01\xa8\xc0 /dev/null\nquit\n" | tftp 192.168.1.1
 echo Flashing 192.168.1.1 using $1...
 echo -en "binary\nput $1 ASUSSPACELINK\nquit\n" | tftp 192.168.1.1
 echo Please wait until leds stops flashing. 
 echo Confirming IP address setting...
 echo -en "get ASUSSPACELINK\x01\x01\xa8\xc0 /dev/null\nquit\n" | tftp 192.168.1.1
 echo Flashing 192.168.1.1 using $1...
 echo -en "binary\nput $1 ASUSSPACELINK\nquit\n" | tftp 192.168.1.1
 echo Please wait until leds stops flashing. 
-elif [ "$2" == "linksys" ]; then
+elif [ "$2" = "linksys" ]; then
 echo Flashing 192.168.1.1 using $1...
 echo -en "rexmt 1\ntrace\nbinary\nput $1\nquit\n" | tftp 192.168.1.1
 echo Please wait until power led stops flashing. Do not poweroff! Then you can login via telnet 192.168.1.1.
 echo Flashing 192.168.1.1 using $1...
 echo -en "rexmt 1\ntrace\nbinary\nput $1\nquit\n" | tftp 192.168.1.1
 echo Please wait until power led stops flashing. Do not poweroff! Then you can login via telnet 192.168.1.1.
-elif [ "$2" == "toshiba" ]; then
+elif [ "$2" = "toshiba" ]; then
 echo Flashing 192.168.10.1 using $1...
 echo -en "rexmt 1\ntrace\nbinary\nput $1\nquit\n" | tftp 192.168.10.1
 echo Unit will automatically reboot within 5 minutes.  Do not power off.  Then you can login via telnet 192.168.10.1.
 echo Flashing 192.168.10.1 using $1...
 echo -en "rexmt 1\ntrace\nbinary\nput $1\nquit\n" | tftp 192.168.10.1
 echo Unit will automatically reboot within 5 minutes.  Do not power off.  Then you can login via telnet 192.168.10.1.
index 31ce548cdf9ecb210a1623ae8b080e423fed76df..d9aa51989a7af4d41dcb32fcec3a635146d89836 100755 (executable)
@@ -34,7 +34,7 @@ migrate_switch_name() {
        config_foreach do_change_switch_name switch name $oldname $newname
        config_foreach do_change_switch_name switch_vlan device $oldname $newname
 
        config_foreach do_change_switch_name switch name $oldname $newname
        config_foreach do_change_switch_name switch_vlan device $oldname $newname
 
-       [ "$SWITCH_NAME_CHANGED" == "1" ] && {
+       [ "$SWITCH_NAME_CHANGED" = "1" ] && {
                logger -t migrate-switchX "Switch names updated, saving network configuration"
                uci commit network
        }
                logger -t migrate-switchX "Switch names updated, saving network configuration"
                uci commit network
        }
index 0fc632c689a3230890174922b3d777efc9157106..0df94a01c047730532f38a5018ca27becad8821d 100755 (executable)
@@ -26,7 +26,7 @@ do_led_update_sysfs()
 
                new_sysfs=$(echo ${sysfs} | sed "s/${old}/${new}/")
 
 
                new_sysfs=$(echo ${sysfs} | sed "s/${old}/${new}/")
 
-               [ "${new_sysfs}" == "${sysfs}" ] && continue
+               [ "$new_sysfs" = "$sysfs" ] && continue
 
                uci set system.${cfg}.sysfs="${new_sysfs}"
                LED_OPTIONS_CHANGED=1
 
                uci set system.${cfg}.sysfs="${new_sysfs}"
                LED_OPTIONS_CHANGED=1
@@ -80,6 +80,6 @@ wnr612-v2)
        ;;
 esac
 
        ;;
 esac
 
-[ "$LED_OPTIONS_CHANGED" == "1" ] && uci commit system
+[ "$LED_OPTIONS_CHANGED" = "1" ] && uci commit system
 
 exit 0
 
 exit 0
index 1b7e65ea5231aefdd036e70939c80ba0c88f89b1..ffe01fa32caa8c9dee2deef85086d8e76afb87ff 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env bash
 
 set -x 
 #!/usr/bin/env bash
 
 set -x 
-[ $# == 5 ] || {
+[ $# -eq 5 ] || {
     echo "SYNTAX: $0 <file> <bootfs image> <rootfs image> <bootfs size> <rootfs size>"
     exit 1
 }
     echo "SYNTAX: $0 <file> <bootfs image> <rootfs image> <bootfs size> <rootfs size>"
     exit 1
 }
index aab50bf1a9b48deefec434c6b36b89ed0eae0004..f40e160b3b03f587fbda4b50676961d01af24284 100644 (file)
@@ -11,6 +11,6 @@ preinit_ip() {
                ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
 
                local try=0;
                ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
 
                local try=0;
-               while [ $((try++)) -le 5 ] && [ ! $(cat /sys/class/net/$pi_ifname/operstate) == "up" ]; do sleep 1; done
+               while [ $((try++)) -le 5 ] && [ ! "$(cat /sys/class/net/$pi_ifname/operstate)" = "up" ]; do sleep 1; done
        }
 }
        }
 }
index e707dabf056f4e47629fdc69d88713c28f6f1360..adda197b5914e2792305bef1999f2815c040003f 100644 (file)
@@ -6,7 +6,7 @@ set_ether_mac() {
 
        for npe in eth0 eth1 eth2
        do
 
        for npe in eth0 eth1 eth2
        do
-               if [ "$(ifconfig $npe 2>/dev/null | grep -c 00:00:00:00:00:00)" == "1" ]; then
+               if [ "$(ifconfig $npe 2>/dev/null | grep -c 00:00:00:00:00:00)" = "1" ]; then
                        ifconfig $npe hw ether $(fconfig -s -r -d /dev/$RB_CONFIG -n npe_"$npe"_esa)
                fi
        done
                        ifconfig $npe hw ether $(fconfig -s -r -d /dev/$RB_CONFIG -n npe_"$npe"_esa)
                fi
        done
@@ -14,16 +14,16 @@ set_ether_mac() {
        # Some developers should be shot on sight at Zcom/Netgear
        # -- Fixup for the WG302v1, need someone with a WAG302v1 to fix that, too
 
        # Some developers should be shot on sight at Zcom/Netgear
        # -- Fixup for the WG302v1, need someone with a WAG302v1 to fix that, too
 
-       if [ "$(ifconfig eth0 2>/dev/null | grep -c 00:00:00:00:00:00)" == "1" ]; then
+       if [ "$(ifconfig eth0 2>/dev/null | grep -c 00:00:00:00:00:00)" = "1" ]; then
                        ifconfig eth0 hw ether $(fconfig -s -r -d /dev/$RB_CONFIG -n zcom_npe_esa)
        fi
 
        # Others (*cough*, Tonze) are dumb enough to not handle mac addresses at all
 
                        ifconfig eth0 hw ether $(fconfig -s -r -d /dev/$RB_CONFIG -n zcom_npe_esa)
        fi
 
        # Others (*cough*, Tonze) are dumb enough to not handle mac addresses at all
 
-       if [ "$(ifconfig eth0 2>/dev/null | grep -c 00:00:00:00:00:00)" == "1" ]; then
+       if [ "$(ifconfig eth0 2>/dev/null | grep -c 00:00:00:00:00:00)" = "1" ]; then
                ifconfig eth0 hw ether 00:11:22:33:44:55
        fi
                ifconfig eth0 hw ether 00:11:22:33:44:55
        fi
-       if [ "$(ifconfig eth1 2>/dev/null | grep -c 00:00:00:00:00:00)" == "1" ]; then
+       if [ "$(ifconfig eth1 2>/dev/null | grep -c 00:00:00:00:00:00)" = "1" ]; then
                ifconfig eth1 hw ether 00:11:22:33:44:56
        fi
 }
                ifconfig eth1 hw ether 00:11:22:33:44:56
        fi
 }
index 557698b1a24dc50b4d3361917678eee9685f26e3..e96acc8501fc24c93542ccb88863a0da3195247e 100644 (file)
@@ -1 +1 @@
-[ "$ACTION" == "motion" ] && logger webcam motion event
+[ "$ACTION" = "motion" ] && logger webcam motion event
index fd06d20c990e98ca03ab59f895442203c89f8c5d..057fe45444eb9c8041e5d5e7d00e68f620b6e0b1 100644 (file)
@@ -44,7 +44,7 @@ do_checksumming_disable() {
                local rootfs_data_len=$(grep \"rootfs_data\" /proc/mtd | awk -F' ' '{print "0x"$2}')
                local offset=$(echo "$rootfs_len $rootfs_data_len 0x40" | awk -F' ' '{printf "%i",$1-$2-$3}')
                local signature=$(dd if=$rootfs_mtd skip=$offset bs=1 count=4 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"')
                local rootfs_data_len=$(grep \"rootfs_data\" /proc/mtd | awk -F' ' '{print "0x"$2}')
                local offset=$(echo "$rootfs_len $rootfs_data_len 0x40" | awk -F' ' '{printf "%i",$1-$2-$3}')
                local signature=$(dd if=$rootfs_mtd skip=$offset bs=1 count=4 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"')
-               if [ "$signature" == "27051956" ]; then
+               if [ "$signature" = "27051956" ]; then
                        dd conv=notrunc if=$rootfs_mtd skip=$offset of=$firmware_mtd bs=1 count=64 2>/dev/null
                fi
        ;;
                        dd conv=notrunc if=$rootfs_mtd skip=$offset of=$firmware_mtd bs=1 count=64 2>/dev/null
                fi
        ;;
index 06957a5aec574848bff74493e0cd264162770d11..2a09306af69ebece76181e5e8d8d84257d275afa 100755 (executable)
@@ -8,7 +8,7 @@
 #
 
 set -x 
 #
 
 set -x 
-[ $# == 6 ] || {
+[ $# -eq 6 ] || {
     echo "SYNTAX: $0 <file> <bootfs image> <rootfs image> <bootfs size> <rootfs size> <u-boot image>"
     exit 1
 }
     echo "SYNTAX: $0 <file> <bootfs image> <rootfs image> <bootfs size> <rootfs size> <u-boot image>"
     exit 1
 }
index 9d11efbb05ed209d946bdcfdaa009e6777b53c5b..b4bf901fb4884b82d957527d0a0a9a64dd89a819 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env bash
 # Copyright (C) 2006-2012 OpenWrt.org
 set -x
 #!/usr/bin/env bash
 # Copyright (C) 2006-2012 OpenWrt.org
 set -x
-[ $# == 5 -o $# == 6 ] || {
+[ $# -eq 5 -o $# -eq 6 ] || {
     echo "SYNTAX: $0 <file> <kernel size> <kernel directory> <rootfs size> <rootfs image> [<align>]"
     exit 1
 }
     echo "SYNTAX: $0 <file> <kernel size> <kernel directory> <rootfs size> <rootfs image> [<align>]"
     exit 1
 }