summaryrefslogtreecommitdiff
path: root/test/integration/Vagrantfile
blob: 2327e5d4e0f7eadcca92a665340179389740a9c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "ubuntu/bionic64"
  config.vm.provision "ansible" do |ansible|
    ansible.playbook = "./playbook.yml"
    ansible.become = true
    ansible.become_user = 'root'
    ansible.verbose = 'vvvv'
    ansible.compatibility_mode = "2.0"
  end

  config.vm.synced_folder "../..", "/net-ssh"
end