From b48524ddfae2e2180453cd38f7c5e9d34418d3c3 Mon Sep 17 00:00:00 2001 From: Alex Peterson Date: Wed, 10 Aug 2022 11:48:30 -0500 Subject: [PATCH] Add Wireguard to all install conditions adding wireguard to all install configs. will fix the update script from gutting wireguard when it's run. I dont see any situation where wireguard shouldnt be installed, unlike HTTPS etc. --- scripts/dappnode_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dappnode_install.sh b/scripts/dappnode_install.sh index 4bd9380..06165d1 100755 --- a/scripts/dappnode_install.sh +++ b/scripts/dappnode_install.sh @@ -66,7 +66,7 @@ determine_packages() { is_port_used if [ "$IS_ISO_INSTALL" == "false" ]; then if [ "$IS_PORT_USED" == "true" ]; then - PKGS=(BIND IPFS VPN DAPPMANAGER WIFI) + PKGS=(BIND IPFS VPN WIREGUARD DAPPMANAGER WIFI) else PKGS=(HTTPS BIND IPFS WIREGUARD DAPPMANAGER WIFI) fi