crowdsec/test/ansible/vagrant/oracle-9/Vagrantfile
2023-07-04 12:26:32 +02:00

12 lines
283 B
Ruby

# frozen_string_literal: true
Vagrant.configure('2') do |config|
config.vm.box = 'generic/oracle9'
config.vm.provision "shell", inline: <<-SHELL
sudo dnf config-manager --set-enabled ol9_codeready_builder
SHELL
end
common = '../common'
load common if File.exist?(common)