vagrant 最少的设置

示例

流浪文件

Vagrant.configure("2") do |config|
  config.vm.box = "ubuntu/trusty64"
  config.vm.provision "ansible" do |ansible|
   ansible.playbook= "vagrant-playbook.yml"
  end
end

流浪汉剧本

---
- hosts: default
  tasks:
    - name: Say hello
      debug:
        msg: 'Hello, World'