From 04547b496f519edc61702cdd9d599b6431383210 Mon Sep 17 00:00:00 2001 From: Emilien Mantel Date: Mon, 29 Oct 2018 14:15:02 +0100 Subject: [PATCH] Force install python-apt on Vagrant+Docker --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index e2b4531..a82317d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -37,6 +37,7 @@ Vagrant.configure("2") do |config| d.remains_running = true d.has_ssh = true end + m.vm.provision "shell", inline: "apt-get update && apt-get install -y python python-apt" m.vm.provision "ansible" do |ansible| ansible.playbook = "tests/test.yml" ansible.verbose = 'vv'