github.com/crowdsecurity/crowdsec@v1.6.1/test/ansible/vagrant/wizard/centos-8/Vagrantfile (about)

     1  # frozen_string_literal: true
     2  
     3  Vagrant.configure('2') do |config|
     4    config.vm.box = 'generic/centos8s'
     5    config.vm.provision "shell", inline: <<-SHELL
     6      sudo dnf -y install dnf-plugins-core kitty-terminfo
     7      dnf config-manager --set-enabled powertools
     8      # sudo dnf -y update
     9    SHELL
    10  end
    11  
    12  common = '../common'
    13  load common if File.exist?(common)