最小的設定
Vagrantfile
placeholderCopyVagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision "ansible" do |ansible|
ansible.playbook = "vagrant-playbook.yml"
end
end
無業遊民,playbook.yml
- placeholderCopytasks:
- name: Say hello
debug:
msg: 'Hello, World'