mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Fix error in Vagrantfile
Fixed a missing "end" statement in Vagrantfile
This commit is contained in:
parent
95b9f0a5fe
commit
1ddc7016fe
1 changed files with 5 additions and 4 deletions
9
kvm/Vagrantfile
vendored
9
kvm/Vagrantfile
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue