move uci_load into config_load so that changes can be applied via uci without commiting

SVN-Revision: 7927
This commit is contained in:
Mike Baker 2007-07-11 20:39:28 +00:00
parent b1d970fd1d
commit 57da2d5713
2 changed files with 22 additions and 15 deletions

View File

@ -85,19 +85,32 @@ config_clear() {
}
config_load() {
local file
case "$1" in
/*) file="$1";;
*) file="$UCI_ROOT/etc/config/$1";;
local cfg
local uci
local PACKAGE="$1"
case "$PACKAGE" in
/*) cfg="$PACKAGE"
uci=""
;;
*) cfg="$UCI_ROOT/etc/config/$PACKAGE"
uci="/tmp/.uci/${PACKAGE}"
;;
esac
[ -e "$cfg" ] || cfg=""
[ -e "$uci" ] || uci=""
# no config
[ -z "$cfg" -a -z "$uci" ] && return 1
_C=0
export ${NO_EXPORT:+-n} CONFIG_SECTIONS=
export ${NO_EXPORT:+-n} CONFIG_NUM_SECTIONS=0
export ${NO_EXPORT:+-n} CONFIG_SECTION=
[ -e "$file" ] && {
. $file
} || return 1
${cfg:+. "$cfg"}
${uci:+. "$uci"}
${CONFIG_SECTION:+config_cb}
}

View File

@ -19,13 +19,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
uci_load() {
local PACKAGE="$1"
config_load "$PACKAGE"
local PACKAGE_BASE="$(basename "$PACKAGE")"
[ -f "/tmp/.uci/${PACKAGE_BASE}" ] && {
. "/tmp/.uci/${PACKAGE_BASE}" 2>/dev/null >/dev/null
config_cb
}
config_load "$1"
}
uci_apply_defaults() {(