summaryrefslogtreecommitdiff
path: root/test/integration/Vagrantfile
blob: 443fb763bffcf429c1e5e78f1747111b72bedaf1 (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/jammy64"
  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