bfec4febbe39b0ab364038ba38c0863123748de9
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
24 export ${NO_EXPORT:+-n} CONFIG_SECTIONS
=
25 export ${NO_EXPORT:+-n} CONFIG_NUM_SECTIONS
=0
26 export ${NO_EXPORT:+-n} CONFIG_SECTION
=
28 eval "$(/sbin/uci ${LOAD_STATE:+-P /var/state} -S -n export "$PACKAGE")"
30 ${CONFIG_SECTION:+config_cb}
35 /sbin
/uci
-q show
"$1" > /dev
/null
&& return 0
44 /sbin
/uci
-P /var
/state revert
"$PACKAGE${CONFIG:+.$CONFIG}${OPTION:+.$OPTION}"
53 [ -z "$VALUE" ] && return 0
54 /sbin
/uci
-P /var
/state
set "$PACKAGE.$CONFIG${OPTION:+.$OPTION}=$VALUE"
63 /sbin
/uci
set "$PACKAGE.$CONFIG.$OPTION=$TYPE"
71 /sbin
/uci
set "$PACKAGE.$CONFIG=$TYPE"
79 /sbin
/uci rename
"$PACKAGE.$CONFIG=$VALUE"
87 /sbin
/uci del
"$PACKAGE.$CONFIG${OPTION:+.$OPTION}"
92 /sbin
/uci commit
$PACKAGE
This page took 0.039851 seconds and 3 git commands to generate.