crowdsec/test/ansible/vagrant/ubuntu-18.04-bionic/Vagrantfile

12 lines
270 B
Ruby
Raw Normal View History

# frozen_string_literal: true
Vagrant.configure('2') do |config|
# the official boxes only supports virtualbox
config.vm.box = 'generic/ubuntu1804'
2023-07-04 10:26:32 +00:00
config.vm.provision "shell", inline: <<-SHELL
SHELL
end
2022-08-04 09:25:34 +00:00
common = '../common'
load common if File.exist?(common)