github.com/crowdsecurity/crowdsec@v1.6.1/test/ansible/vagrant/alma-9/Vagrantfile (about) 1 # frozen_string_literal: true 2 3 Vagrant.configure('2') do |config| 4 config.vm.box = 'generic/alma9' 5 config.vm.provision "shell", inline: <<-SHELL 6 sudo dnf -y install kitty-terminfo 7 sudo dnf config-manager --set-enabled crb 8 SHELL 9 end 10 11 common = '../common' 12 load common if File.exist?(common)