From a49b1498fe64c450c9b830bedc7c410522a97b40 Mon Sep 17 00:00:00 2001 From: Nils Schneider <nils.schneider@posteo.de> Date: Sat, 22 Oct 2016 13:04:57 +0200 Subject: [PATCH] Vagrantfile: enable ansible --- Vagrantfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 8372733..27efb8b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,10 +6,10 @@ # backwards compatibility). Please don't change it unless you know what # you're doing. Vagrant.configure(2) do |config| -# config.vm.provision "ansible" do |ansible| -# ansible.playbook = "repo/playbook.yml" -# ansible.extra_vars = { ansible_python_interpreter: "/usr/bin/env python2" } -# end + config.vm.provision "ansible" do |ansible| + ansible.playbook = "playbook.yml" + ansible.extra_vars = { ansible_python_interpreter: "/usr/bin/env python2" } + end config.vm.network "private_network", type: "dhcp" -- GitLab