crowdsec/test/ansible/vagrant/centos-9/Vagrantfile
2023-07-04 12:26:32 +02:00

13 lines
307 B
Ruby

# frozen_string_literal: true
Vagrant.configure('2') do |config|
config.vm.box = 'generic/centos9s'
config.vm.provision "shell", inline: <<-SHELL
sudo dnf -y install dnf-plugins-core
sudo dnf config-manager --set-enabled crb
SHELL
end
common = '../common'
load common if File.exist?(common)