projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f9965b
)
support true and false in config_get_bool
author
Felix Fietkau
<nbd@openwrt.org>
Wed, 19 Sep 2007 14:43:29 +0000
(14:43 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Wed, 19 Sep 2007 14:43:29 +0000
(14:43 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8840
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/files/etc/functions.sh
patch
|
blob
|
history
diff --git
a/package/base-files/files/etc/functions.sh
b/package/base-files/files/etc/functions.sh
index
a613e11
..
284ed4c
100755
(executable)
--- 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
}