From: Stijn Tintel Date: Tue, 1 Aug 2017 03:48:26 +0000 (+0200) Subject: strongswan: use -eq when testing booleans X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=ba1ead54f05dedd347a2b8f28cb7528d2c5c523b;p=openwrt-packages.git strongswan: use -eq when testing booleans Signed-off-by: Stijn Tintel --- diff --git a/net/strongswan/files/ipsec.init b/net/strongswan/files/ipsec.init index 2d5000479..311679d69 100644 --- a/net/strongswan/files/ipsec.init +++ b/net/strongswan/files/ipsec.init @@ -224,7 +224,7 @@ config_remote() { config_name=$1 config_get_bool enabled "$1" enabled 0 - [ "$enabled" = "0" ] && return + [ $enabled -eq 0 ] && return config_get gateway "$1" gateway config_get pre_shared_key "$1" pre_shared_key @@ -277,7 +277,7 @@ config_ipsec() { config_get debug "$1" debug 0 config_get_bool rtinstall_enabled "$1" rtinstall_enabled 1 - [ $rtinstall_enabled = "1" ] && install_routes=yes || install_routes=no + [ $rtinstall_enabled -eq 1 ] && install_routes=yes || install_routes=no # prepare extra charon config option ignore_routing_tables for routing_table in $(config_get "$1" "ignore_routing_tables"); do