From 4d5731341b04e5aaab2d54fcd97c6a04e3cf6793 Mon Sep 17 00:00:00 2001
From: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Date: Sun, 16 Jun 2019 16:23:25 +0200
Subject: [PATCH] configurehood: Do not suppress uci errors where not necessary
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Reviewed-by: Fabian Bläse <fabian@blaese.de>
---
 src/packages/fff/fff-hoods/files/usr/sbin/configurehood | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/packages/fff/fff-hoods/files/usr/sbin/configurehood b/src/packages/fff/fff-hoods/files/usr/sbin/configurehood
index 4b85ae46..d5dc2c00 100755
--- a/src/packages/fff/fff-hoods/files/usr/sbin/configurehood
+++ b/src/packages/fff/fff-hoods/files/usr/sbin/configurehood
@@ -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
-- 
GitLab