Skip to content

Commit 043fee3

Browse files
committed
Adding a script to run Ansible within the guest machine when running a Windows host. Ansible does not currently support Windows as the control machine.
1 parent 950023b commit 043fee3

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

Vagrantfile

+9-4
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,13 @@ Vagrant.configure("2") do |config|
2525
# forward SSH keys
2626
config.ssh.forward_agent = true
2727

28-
# provisioning with ansible
29-
config.vm.provision :ansible do |ansible|
30-
ansible.playbook = "./vagrant/playbook.yml"
31-
end
28+
if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM)
29+
# provisioning with ansible on windows
30+
config.vm.provision "shell", path: "./vagrant/ansible-windows.sh"
31+
else
32+
# provisioning with ansible
33+
config.vm.provision :ansible do |ansible|
34+
ansible.playbook = "./vagrant/playbook.yml"
35+
end
36+
end
3237
end

vagrant/ansible-windows.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
echo "Installing/Updating Ansible..."
2+
apt-get update -qq && apt-get install ansible -y -qq
3+
COUNT_HOSTS=`grep \\\[precise64\\\] /etc/ansible/hosts -c`
4+
if [ $COUNT_HOSTS -lt 1 ]; then
5+
printf "\n[precise64] \n127.0.0.1 ansible_connection=local\n" > /etc/ansible/hosts
6+
fi
7+
echo "Running Ansible playbook..."
8+
ansible-playbook /vagrant/vagrant/playbook.yml

0 commit comments

Comments
 (0)