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