From 0f2676eea6167eacee4f991559b5107f84292d8e Mon Sep 17 00:00:00 2001 From: Christoph Date: Fri, 26 Nov 2021 02:22:57 +0100 Subject: [PATCH] post_decalrations.conf: add missing array of wireguard interfaces 'wg_ifs_arr'. --- conf/post_decalrations.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/conf/post_decalrations.conf b/conf/post_decalrations.conf index ca72864..0b2226c 100644 --- a/conf/post_decalrations.conf +++ b/conf/post_decalrations.conf @@ -70,6 +70,14 @@ for _dev in $vpn_ifs ; do vpn_if_arr+=("$_dev") done +# --- +# - WireGuard Interfaces +# --- +declare -a wg_if_arr +for _dev in $wg_ifs ; do + wg_if_arr+=("$_dev") +done + # --- # - Local Network Interfaces # ---