From 56a3875e2d3748bf57904ad848c6cc2f2e4bd9a6 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Thu, 13 Jan 2022 08:59:51 +0100 Subject: [PATCH] chore: add auto-apt-proxy to vagrant prepare (#1511) * chore: add auto-apt-proxy to vagrant prepare * bypass apt SRV redirections for deb.debian.org --- installer/vagrant/debian.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/installer/vagrant/debian.sh b/installer/vagrant/debian.sh index 5ec367b80..134221e9d 100755 --- a/installer/vagrant/debian.sh +++ b/installer/vagrant/debian.sh @@ -1,6 +1,9 @@ #!/usr/bin/env bash +sed --in-place 's/deb\.debian\.org/cdn-fastly.deb.debian.org/g' /etc/apt/sources.list + DEBIAN_FRONTEND=noninteractive apt-get update --allow-releaseinfo-change -DEBIAN_FRONTEND=noninteractive apt-get -y install alsa-utils +DEBIAN_FRONTEND=noninteractive apt-get -y install alsa-utils auto-apt-proxy + usermod -a -G audio vagrant usermod -a -G audio www-data