From 57afb46cbd1f19bf0dccee991a361943a547bce8 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 2 Apr 2020 16:57:55 +0200 Subject: [PATCH] Ensure nginx installation will not overwrite our conf files --- scripts/installer.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index 1ce9b9eb1..5c0f79b03 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -28,7 +28,8 @@ echo "==> installer: updating nginx" # https://launchpad.net/~nginx add-apt-repository ppa:nginx/stable --yes apt-get update -apt-get install nginx-full -y +# We need to tell dpkg to use our modified config file always +apt-get install nginx-full -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --force-yes echo "==> installer: updating docker"