diff options
author | Luka Perkov <luka@openwrt.org> | 2014-06-29 23:05:05 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-06-29 23:05:05 +0000 |
commit | be2a05778792e34afffff28a28091acfb2984b63 (patch) | |
tree | da5c61463d4fdfbdaf62f626785db2f2dc7cf89f | |
parent | 1c499abcdaeb30bb27c68cf2032fe4f986f52dda (diff) | |
download | upstream-be2a05778792e34afffff28a28091acfb2984b63.tar.gz upstream-be2a05778792e34afffff28a28091acfb2984b63.tar.bz2 upstream-be2a05778792e34afffff28a28091acfb2984b63.zip |
base-files: define yes/no as valid boolean options
ubox validate_data defines yes/no as valid boolean options, do the same in
config_get_bool too.
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 41405
-rwxr-xr-x | package/base-files/files/lib/functions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh index e55cad0b20..0d4b2a33db 100755 --- a/package/base-files/files/lib/functions.sh +++ b/package/base-files/files/lib/functions.sh @@ -102,8 +102,8 @@ config_get_bool() { local _tmp config_get _tmp "$2" "$3" "$4" case "$_tmp" in - 1|on|true|enabled) _tmp=1;; - 0|off|false|disabled) _tmp=0;; + 1|on|true|yes|enabled) _tmp=1;; + 0|off|false|no|disabled) _tmp=0;; *) _tmp="$4";; esac export ${NO_EXPORT:+-n} "$1=$_tmp" |