From 7af2e355206c5c1d47bc1f4469d755d02357bc65 Mon Sep 17 00:00:00 2001 From: Daniel Hansson Date: Sat, 3 Oct 2020 16:04:34 +0200 Subject: [PATCH] change method for using ipv4 during install --- nextcloud_install_production.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nextcloud_install_production.sh b/nextcloud_install_production.sh index f27a7dd9..0b73c850 100644 --- a/nextcloud_install_production.sh +++ b/nextcloud_install_production.sh @@ -2,8 +2,8 @@ # T&M Hansson IT AB © - 2020, https://www.hanssonit.se/ -# Prefer IPv4 -sed -i "s|#precedence ::ffff:0:0/96 100|precedence ::ffff:0:0/96 100|g" /etc/gai.conf +# Prefer IPv4 for apt +echo 'Acquire::ForceIPv4 "true";' >> /etc/apt/apt.conf.d/99force-ipv4 # Install curl if not existing if [ "$(dpkg-query -W -f='${Status}' "curl" 2>/dev/null | grep -c "ok installed")" == "1" ]