From af0926405e5b8e07e6146e85df9a281c17ada4e4 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Thu, 9 Jul 2015 11:15:55 -0500 Subject: [PATCH] Fixes #160: DrupalVM on Windows Host - Ansible Playbook Not Found. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 8ca381289..1ac3dc860 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -47,7 +47,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Provisioning configuration for shell script (for Windows). config.vm.provision "shell" do |sh| sh.path = "#{dir}/provisioning/JJG-Ansible-Windows/windows.sh" - sh.args = "#{dir}/provisioning/playbook.yml" + sh.args = "/provisioning/playbook.yml" end else # Provisioning configuration for Ansible (for Mac/Linux hosts).