configurehood: Do not suppress uci errors where not necessary

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Reviewed-by: Fabian Bläse <fabian@blaese.de>
This commit is contained in:
Adrian Schmutzler 2019-06-16 16:23:25 +02:00
parent 3d9eb1db2e
commit 4d5731341b
1 changed files with 4 additions and 4 deletions

View File

@ -89,7 +89,7 @@ else
uci -q del "system.@system[0].hood"
uci -q del "system.@system[0].hoodid"
uci -q commit system
uci commit system
reload_config
sleep 30 # Wait for the config AP, which may be created at the same time as this script has started
@ -142,9 +142,9 @@ if [ -s "$hoodfiletmp" ]; then
fi
echo "Setting hood name: $hood (ID $hoodid)"
uci -q set "system.@system[0].hood=$hood"
uci -q set "system.@system[0].hoodid=$hoodid"
uci -q commit system
uci set "system.@system[0].hood=$hood"
uci set "system.@system[0].hoodid=$hoodid"
uci commit system
reload_config
for radio in $(wifiListRadio); do