From: nbd Date: Wed, 19 Sep 2007 14:43:29 +0000 (+0000) Subject: support true and false in config_get_bool X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=4dcc9d335a6774282156f6f1cd6ee93876c55a9c;hp=a0e3d6be3eca7b53e1139cf266fe0f2b089b8a6c;p=openwrt.git support true and false in config_get_bool git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8840 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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 }