From: Felix Fietkau Date: Wed, 19 Sep 2007 14:43:29 +0000 (+0000) Subject: support true and false in config_get_bool X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=136f973d7dedcd8f05a371caaf7b61d0b8058ca4;p=openwrt%2Fsvn-archive%2Farchive.git support true and false in config_get_bool SVN-Revision: 8840 --- diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh index a613e1190b..284ed4c14f 100755 --- a/package/base-files/files/etc/functions.sh +++ b/package/base-files/files/etc/functions.sh @@ -127,8 +127,8 @@ config_get_bool() { local _tmp config_get "_tmp" "$2" "$3" case "$_tmp" in - 1|on|enabled) export ${NO_EXPORT:+-n} "$1=1";; - 0|off|disabled) export ${NO_EXPORT:+-n} "$1=0";; + 1|on|true|enabled) export ${NO_EXPORT:+-n} "$1=1";; + 0|off|false|disabled) export ${NO_EXPORT:+-n} "$1=0";; *) eval "$1=${4:-0}";; esac }