crowdsec/test/ansible/vagrant/ubuntu-18.04-bionic/Vagrantfile
2023-07-04 12:26:32 +02:00

12 lines
270 B
Ruby

# frozen_string_literal: true
Vagrant.configure('2') do |config|
# the official boxes only supports virtualbox
config.vm.box = 'generic/ubuntu1804'
config.vm.provision "shell", inline: <<-SHELL
SHELL
end
common = '../common'
load common if File.exist?(common)