1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 05:58:53 +02:00

uci: add missing 'option' support to uci_rename()

When using the uci.sh wrapper, allow parameters to match those supported
by the uci binary i.e. "uci rename <config>.<section>[.<option>]=<name>".

Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
This commit is contained in:
Tony Ambardar 2017-04-25 02:16:56 -07:00 committed by Jo-Philipp Wich
parent cbe71649bc
commit a367645f23

@ -118,9 +118,10 @@ uci_add() {
uci_rename() { uci_rename() {
local PACKAGE="$1" local PACKAGE="$1"
local CONFIG="$2" local CONFIG="$2"
local VALUE="$3" local OPTION="$3"
local VALUE="$4"
/sbin/uci ${UCI_CONFIG_DIR:+-c $UCI_CONFIG_DIR} rename "$PACKAGE.$CONFIG=$VALUE" /sbin/uci ${UCI_CONFIG_DIR:+-c $UCI_CONFIG_DIR} rename "$PACKAGE.$CONFIG${VALUE:+.$OPTION}=${VALUE:-$OPTION}"
} }
uci_remove() { uci_remove() {