mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-17 23:03:56 +02:00
17 lines
410 B
Ruby
17 lines
410 B
Ruby
Vagrant.configure("2") do |config|
|
|
config.vm.box = "generic/devuan3"
|
|
|
|
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.verbose = "vvvv"
|
|
ansible.config_file = "../../../ansible.cfg"
|
|
ansible.playbook = "../../../run_all.yml"
|
|
end
|
|
|
|
end
|