mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
fix CONFIG_FILENAME in uci_commit()
SVN-Revision: 5791
This commit is contained in:
parent
bfd12920bb
commit
218b006536
@ -127,7 +127,8 @@ uci_commit() {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
config_load "$PACKAGE" || CONFIG_FILENAME="$ROOT/etc/config/$PACKAGE_BASE"
|
config_load "$PACKAGE"
|
||||||
|
CONFIG_FILENAME="${CONFIG_FILENAME:-$ROOT/etc/config/$PACKAGE_BASE}"
|
||||||
uci_do_update "$CONFIG_FILENAME" "$updatestr" > "/tmp/.uci/$PACKAGE_BASE.new" && {
|
uci_do_update "$CONFIG_FILENAME" "$updatestr" > "/tmp/.uci/$PACKAGE_BASE.new" && {
|
||||||
mv -f "/tmp/.uci/$PACKAGE_BASE.new" "$CONFIG_FILENAME" && \
|
mv -f "/tmp/.uci/$PACKAGE_BASE.new" "$CONFIG_FILENAME" && \
|
||||||
rm -f "/tmp/.uci/$PACKAGE_BASE"
|
rm -f "/tmp/.uci/$PACKAGE_BASE"
|
||||||
|
Loading…
Reference in New Issue
Block a user