mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-14 13:24:34 +02:00
12 lines
303 B
Ruby
12 lines
303 B
Ruby
# frozen_string_literal: true
|
|
|
|
Vagrant.configure('2') do |config|
|
|
config.vm.box = 'generic/rocky9'
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
sudo dnf config-manager --set-enabled crb
|
|
sudo dnf -y install kitty-terminfo
|
|
SHELL
|
|
end
|
|
|
|
common = '../common'
|
|
load common if File.exist?(common)
|