mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-15 13:53:58 +02:00
12 lines
287 B
Ruby
12 lines
287 B
Ruby
# frozen_string_literal: true
|
|
|
|
Vagrant.configure('2') do |config|
|
|
config.vm.box = 'debian/buster64'
|
|
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)
|