crowdsec/test/ansible/vagrant/rocky-8/Vagrantfile

13 lines
310 B
Ruby
Raw Normal View History

# frozen_string_literal: true
Vagrant.configure('2') do |config|
config.vm.box = 'generic/rocky8'
2023-07-31 15:00:06 +00:00
config.vm.provision "shell", inline: <<-SHELL
sudo dnf config-manager --set-enabled powertools
sudo dnf -y install kitty-terminfo
SHELL
end
2022-08-04 09:25:34 +00:00
common = '../common'
load common if File.exist?(common)