From 17e4fa78f9443b0ac2b374a9077ff13b5e031949 Mon Sep 17 00:00:00 2001 From: yaazkal Date: Tue, 28 Dec 2021 22:42:52 -0500 Subject: [PATCH] [FIX] vnet: use the right search pattern to choose the unique epair --- usr/local/share/bastille/create.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/share/bastille/create.sh b/usr/local/share/bastille/create.sh index 36fea56a..b1b43b42 100644 --- a/usr/local/share/bastille/create.sh +++ b/usr/local/share/bastille/create.sh @@ -193,7 +193,7 @@ generate_vnet_jail_conf() { local list_jails_num=$(echo "${jail_list}" | wc -l | awk '{print $1}') local num_range=$((list_jails_num + 1)) for _num in $(seq 0 "${num_range}"); do - if ! grep -q "e${_num}b" "${bastille_jailsdir}"/*/jail.conf; then + if ! grep -q "e[0-9]b_bastille${_num}" "${bastille_jailsdir}"/*/jail.conf; then uniq_epair="bastille${_num}" uniq_epair_bridge="${_num}" break