crowdsec/test/ansible/vagrant/experimental/dragonflybsd-6/Vagrantfile
mmetc a19748ae35
Rename directory "tests" to "test" (#2094)
If you use a ./test/local directory, you need to create it again:
$ make clean bats-build bats-fixture
2023-03-03 15:54:49 +01:00

19 lines
445 B
Ruby

# frozen_string_literal: true
Vagrant.configure('2') do |config|
config.vm.box = 'generic/dragonflybsd6'
config.vm.define 'crowdsec'
config.vm.provider :libvirt do |libvirt|
libvirt.cpus = 1
libvirt.memory = 1536
end
config.vm.synced_folder '.', '/vagrant', disabled: true
config.vm.provision 'ansible' do |ansible|
ansible.config_file = '../../../ansible.cfg'
ansible.playbook = '../../../run_all.yml'
end
end