network/uqmi: pipe the output off qmi_wds_stop to /dev/null
[openwrt/.git] / package / network / utils / uqmi / files / lib / netifd / proto / qmi.sh
index 46ea134182e3a9e12b885f1eb72ab7982516efc0..38d83ace5fcc5db23d5eeb8002d03b17984ce0a2 100755 (executable)
@@ -279,10 +279,15 @@ qmi_wds_stop() {
 
        uqmi -s -d "$device" --set-client-id wds,"$cid" \
                --stop-network 0xffffffff \
-               --autoconnect > /dev/null
+               --autoconnect > /dev/null 2>&1
 
-       [ -n "$pdh" ] && uqmi -s -d "$device" --set-client-id wds,"$cid" --stop-network "$pdh"
-       uqmi -s -d "$device" --set-client-id wds,"$cid" --release-client-id wds
+       [ -n "$pdh" ] && {
+               uqmi -s -d "$device" --set-client-id wds,"$cid" \
+                       --stop-network "$pdh" > /dev/null 2>&1
+       }
+
+       uqmi -s -d "$device" --set-client-id wds,"$cid" \
+               --release-client-id wds > /dev/null 2>&1
 }
 
 proto_qmi_teardown() {