crowdsec/test/ansible/vagrant/experimental/hardenedbsd-13/Vagrantfile
2023-07-04 12:26:32 +02:00

11 lines
257 B
Ruby

# frozen_string_literal: true
Vagrant.configure('2') do |config|
config.vm.box = 'generic/hardenedbsd13'
config.vm.provision "shell", inline: <<-SHELL
sudo pkg install python3
SHELL
end
common = '../../common'
load common if File.exist?(common)