2 # Shell script compatibility wrappers for /sbin/uci
4 # Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 if [ -z "$CONFIG_APPEND" ]; then
28 export ${NO_EXPORT:+-n} CONFIG_SECTIONS
=
29 export ${NO_EXPORT:+-n} CONFIG_NUM_SECTIONS
=0
30 export ${NO_EXPORT:+-n} CONFIG_SECTION
=
33 DATA
="$(/sbin/uci ${LOAD_STATE:+-P /var/state} -S -n export "$PACKAGE" 2>/dev/null)"
35 [ "$RET" != 0 -o -z "$DATA" ] ||
eval "$DATA"
38 ${CONFIG_SECTION:+config_cb}
44 /sbin
/uci
-q show
"$1" > /dev
/null
&& return 0
54 /sbin
/uci
-P /var
/state revert
"$PACKAGE${CONFIG:+.$CONFIG}${OPTION:+.$OPTION}"
63 [ "$#" = 4 ] ||
return 0
64 /sbin
/uci
-P /var
/state
set "$PACKAGE.$CONFIG${OPTION:+.$OPTION}=$VALUE"
73 /sbin
/uci
set "$PACKAGE.$CONFIG.$OPTION=$VALUE"
81 if [ -z "$CONFIG" ]; then
82 export ${NO_EXPORT:+-n} CONFIG_SECTION
="$(/sbin/uci add "$PACKAGE" "$TYPE")"
84 /sbin
/uci
set "$PACKAGE.$CONFIG=$TYPE"
85 export ${NO_EXPORT:+-n} CONFIG_SECTION
="$CONFIG"
94 /sbin
/uci rename
"$PACKAGE.$CONFIG=$VALUE"
102 /sbin
/uci del
"$PACKAGE.$CONFIG${OPTION:+.$OPTION}"
107 /sbin
/uci commit
$PACKAGE
This page took 0.06059 seconds and 5 git commands to generate.