diff --git a/usr/local/share/bastille/clone.sh b/usr/local/share/bastille/clone.sh index 4f940eeb..206a82d3 100644 --- a/usr/local/share/bastille/clone.sh +++ b/usr/local/share/bastille/clone.sh @@ -386,6 +386,7 @@ update_jailconf_vnet() { local old_ngif="${if}" # Generate new netgraph interface name local new_ngif="ng${ngif_num}_${NEWNAME}" + # shellcheck disable=SC2046 local new_if_prefix="$(echo ${if} | awk -F'_' '{print $1}')" local new_if_suffix="$(echo ${if} | awk -F'_' '{print $2}')" diff --git a/usr/local/share/bastille/rename.sh b/usr/local/share/bastille/rename.sh index 05527aa8..4de9bba3 100644 --- a/usr/local/share/bastille/rename.sh +++ b/usr/local/share/bastille/rename.sh @@ -211,6 +211,7 @@ update_jailconf_vnet() { local old_ngif="${if}" # Generate new netgraph interface name local new_ngif="ng${ngif_num}_${NEWNAME}" + # shellcheck disable=SC2034 local new_if_prefix="$(echo ${new_ngif} | awk -F'_' '{print $1}')" local new_if_suffix="$(echo ${new_ngif} | awk -F'_' '{print $2}')"