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

12 lines
245 B
Ruby

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