Browse Source

Keep shellcheck from complaining

The code was correct, but shellcheck didn’t recognize that ‘n’ had been
assigned as a local variable.
Demi Marie Obenour 3 years ago
parent
commit
44b3c12d94
1 changed files with 2 additions and 2 deletions
  1. 2 2
      network/vif-route-qubes

+ 2 - 2
network/vif-route-qubes

@@ -48,8 +48,8 @@ network_hooks() {
 }
 
 conntrack_purge () {
-    local 'n=(0|[1-9][0-9]*)' output deleted msg
-    msg='flow entries have been deleted\.$'
+    local n output deleted msg
+    n='(0|[1-9][0-9]*)' msg='flow entries have been deleted\.$'
     deleted="^conntrack v$n\\.$n\\.$n \\(conntrack-tools\\): $n $msg"
     output=$(LC_ALL=C exec conntrack -D "$@" 2>&1 >/dev/null) || :
     [[ "$output" =~ $deleted ]]