crowdsec/test/ansible/vagrant/ubuntu-23.04-lunar/Vagrantfile

12 lines
261 B
Ruby
Raw Permalink Normal View History

2023-07-04 10:26:32 +00:00
# frozen_string_literal: true
Vagrant.configure('2') do |config|
config.vm.box = 'bento/ubuntu-23.04'
config.vm.provision "shell", inline: <<-SHELL
sudo apt install -y kitty-terminfo
2023-07-04 10:26:32 +00:00
SHELL
end
common = '../common'
load common if File.exist?(common)