From c2f2a70d7fe84065420d4f8dbab776d5b78f6b2e Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 9 Feb 2022 19:50:51 -0800 Subject: [PATCH] vultr has ufw enabled by default --- baseimage/initializeBaseUbuntuImage.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/baseimage/initializeBaseUbuntuImage.sh b/baseimage/initializeBaseUbuntuImage.sh index 287177356..43a441a94 100755 --- a/baseimage/initializeBaseUbuntuImage.sh +++ b/baseimage/initializeBaseUbuntuImage.sh @@ -184,6 +184,9 @@ systemctl disable postfix || true systemctl stop systemd-resolved || true systemctl disable systemd-resolved || true +# on vultr, ufw is enabled by default. we have our own firewall +ufw disable + # ubuntu's default config for unbound does not work if ipv6 is disabled. this config is overwritten in start.sh # we need unbound to work as this is required for installer.sh to do any DNS requests ip6=$([[ -s /proc/net/if_inet6 ]] && echo "yes" || echo "no")