projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
rename mini_fo mount point so as not to confuse users
[openwrt.git]
/
package
/
base-files
/
files
/
bin
/
uci
diff --git
a/package/base-files/files/bin/uci
b/package/base-files/files/bin/uci
index
f8e08f8
..
f89fe82
100755
(executable)
--- a/
package/base-files/files/bin/uci
+++ b/
package/base-files/files/bin/uci
@@
-47,7
+47,7
@@
do_set() {
local VALUE
strtok "$1" PACKAGE . CONFIG = VALUE
local VALUE
strtok "$1" PACKAGE . CONFIG = VALUE
- [ $? -ne 3 ] && {
+ [ $? -ne 3
-a $? -ne 2
] && {
uci_usage set
exit 1
}
uci_usage set
exit 1
}
@@
-86,6
+86,7
@@
do_remove() {
do_commit() {
local PACKAGE="$1"
for package in ${PACKAGE:-$(cd /tmp/.uci; ls)}; do
do_commit() {
local PACKAGE="$1"
for package in ${PACKAGE:-$(cd /tmp/.uci; ls)}; do
+ [ lock = "${package##*.}" ] && continue # ignore .lock files
uci_commit "$package"
done
}
uci_commit "$package"
done
}
@@
-105,7
+106,7
@@
do_show() {
SECTION=""
config_cb() {
SECTION=""
config_cb() {
- if [ -z "$CONFIG" -o
"$CONFIG" =
"$2" ]; then
+ if [ -z "$CONFIG" -o
."$CONFIG" = .
"$2" ]; then
append SECTION "$2"
option_cb() {
append "${CONFIG_SECTION}_VARS" "$1"
append SECTION "$2"
option_cb() {
append "${CONFIG_SECTION}_VARS" "$1"
This page took
0.032256 seconds
and
4
git commands to generate.