mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-18 07:14:03 +02:00
18 lines
461 B
Ruby
18 lines
461 B
Ruby
Vagrant.configure("2") do |config|
|
|
config.vm.box = "generic/alpine316"
|
|
config.vm.provision "shell", path: "bootstrap"
|
|
|
|
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
|