Fix error in Vagrantfile

Fixed a missing "end" statement in Vagrantfile
This commit is contained in:
Scott Lowe 2016-07-19 15:14:53 -06:00
parent 95b9f0a5fe
commit 1ddc7016fe

9
kvm/Vagrantfile vendored
View file

@ -50,9 +50,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end #if machine['nested']
end # srv.vm.provider vmware_fusion
# Provision the VM with Ansible
config.vm.provision 'ansible' do |ansible|
ansible.playbook = 'provision.yml'
end # config.vm.provision
# Provision the VM with Ansible
config.vm.provision 'ansible' do |ansible|
ansible.playbook = 'provision.yml'
end # config.vm.provision
end # config.vm.define
end # machines.each
end # Vagrant.configure