vagrant: Put hold on freedombox package during provision

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
James Valleroy 2019-02-04 07:05:54 -05:00 committed by Sunil Mohan Adapa
parent 2c7d1a09c1
commit 47366770c8
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

3
Vagrantfile vendored
View File

@ -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