From 47366770c897202a41ac55931d2c2d29c54ecffb Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Mon, 4 Feb 2019 07:05:54 -0500 Subject: [PATCH] vagrant: Put hold on freedombox package during provision Signed-off-by: James Valleroy --- Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index ec9442d24..a51c07a30 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -27,7 +27,10 @@ Vagrant.configure(2) do |config| cd /vagrant/ ./setup.py install apt-get update + # In case new dependencies conflict with old dependencies + apt-mark hold freedombox DEBIAN_FRONTEND=noninteractive apt-get install -y $(plinth --list-dependencies) + apt-mark unhold freedombox systemctl daemon-reload SHELL config.vm.provision "shell", run: 'always', inline: <<-SHELL