From baf03d8953d51e5e6237cdb79156a25d0e3edb1b Mon Sep 17 00:00:00 2001 From: Nils Schneider <nils.schneider@posteo.de> Date: Sat, 10 Dec 2016 13:00:38 +0100 Subject: [PATCH] Vagrantfile: sync pacman before installing python2 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 734ab5e..31f0e60 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,7 +7,7 @@ # you're doing. Vagrant.configure(2) do |config| config.vm.provision "shell", - inline: "sudo pacman --noconfirm -S --needed python2" + inline: "sudo pacman --noconfirm -Sy --needed python2" config.vm.provision "ansible" do |ansible| ansible.playbook = "playbook.yml" -- GitLab