crowdsec/test/ansible/vagrant/oracle-9/Vagrantfile

12 lines
283 B
Ruby
Raw Normal View History

# frozen_string_literal: true
Vagrant.configure('2') do |config|
config.vm.box = 'generic/oracle9'
2023-07-04 10:26:32 +00:00
config.vm.provision "shell", inline: <<-SHELL
sudo dnf config-manager --set-enabled ol9_codeready_builder
SHELL
end
2022-08-04 09:25:34 +00:00
common = '../common'
load common if File.exist?(common)