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