2 # Shell script defining macros for manipulating config files
4 # Copyright (C) 2006 Fokus Fraunhofer <carsten.tittel@fokus.fraunhofer.de>
5 # Copyright (C) 2006,2007 Felix Fietkau <nbd@openwrt.org>
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 config_load
"$PACKAGE"
24 local PACKAGE_BASE
="$(basename "$PACKAGE")"
25 [ -f "/tmp/.uci/${PACKAGE_BASE}" ] && {
26 .
"/tmp/.uci/${PACKAGE_BASE}" 2>/dev
/null
>/dev
/null
31 uci_apply_defaults
() {(
32 cd /etc
/uci-defaults ||
return 0
34 [ -z "$files" ] && return 0
36 for file in $files; do
37 ( .
"./$(basename $file)" ) && rm -f "$file"
44 awk -f $UCI_ROOT/lib
/config
/uci.
awk -f - <<EOF
55 config = read_file(\"$FILENAME\")
64 local PACKAGE_BASE
="$(basename "$PACKAGE")"
68 /*) UCIFILE
="$PACKAGE";;
70 UCIFILE
="/tmp/.uci/$PACKAGE_BASE"
76 echo "$UPDATE" >> "$UCIFILE"
87 uci_add_update
"$PACKAGE" "config_set '$CONFIG' '$OPTION' '$VALUE'"
90 ( # spawn a subshell so you don't mess up the current environment
92 config_get OLDVAL
"$CONFIG" "$OPTION"
93 if [ "x$OLDVAL" != "x$VALUE" ]; then
94 config_get
type "$CONFIG" TYPE
97 ) || uci_add_update
"$PACKAGE" "config_set '$CONFIG' '$OPTION' '$VALUE'"
107 uci_add_update
"$PACKAGE" "config '$TYPE' '$CONFIG'"
115 uci_add_update
"$PACKAGE" "config_rename '$CONFIG' '$VALUE'"
123 if [ -z "$OPTION" ]; then
124 uci_add_update
"$PACKAGE" "config_clear '$CONFIG'"
126 uci_add_update
"$PACKAGE" "config_unset '$CONFIG' '$OPTION'"
132 local PACKAGE_BASE
="$(basename "$PACKAGE")"
138 LOCK
=`which lock` || LOCK
=:
139 $LOCK "/tmp/.uci/$PACKAGE_BASE.lock"
140 [ -f "/tmp/.uci/$PACKAGE_BASE" ] && (
145 append updatestr
"config = uci_update_config(config, \"@$2=$1\")" "$N"
148 append updatestr
"config = uci_update_config(config, \"$CONFIG_SECTION.$1=$2\")" "$N"
151 append updatestr
"config = uci_update_config(config, \"&$1=$2\")" "$N"
154 append updatestr
"config = uci_update_config(config, \"-$1.$2\")" "$N"
157 append updatestr
"config = uci_update_config(config, \"-$1\")" "$N"
160 .
"/tmp/.uci/$PACKAGE_BASE"
162 # completely disable handlers so that they don't get in the way
170 config_load
"$PACKAGE"
171 CONFIG_FILENAME
="${CONFIG_FILENAME:-$UCI_ROOT/etc/config/$PACKAGE_BASE}"
172 uci_do_update
"$CONFIG_FILENAME" "$updatestr" > "/tmp/.uci/$PACKAGE_BASE.new" && {
173 mv -f "/tmp/.uci/$PACKAGE_BASE.new" "$CONFIG_FILENAME" && \
174 rm -f "/tmp/.uci/$PACKAGE_BASE"
177 $LOCK -u "/tmp/.uci/$PACKAGE_BASE.lock"
This page took 0.082545 seconds and 5 git commands to generate.