github.com/crowdsecurity/crowdsec@v1.6.1/test/ansible/vagrant/oracle-7/Vagrantfile (about)

     1  # frozen_string_literal: true
     2  
     3  Vagrant.configure('2') do |config|
     4    config.vm.box = 'generic/oracle7'
     5    config.vm.provision "shell", inline: <<-SHELL
     6      sudo yum-config-manager --enable ol7_optional_latest
     7    SHELL
     8  end
     9  
    10  common = '../common'
    11  load common if File.exist?(common)