crowdsec/test/ansible/vagrant/wizard/debian-12-bookworm/Vagrantfile

13 lines
289 B
Ruby
Raw Normal View History

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