mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-14 21:33:54 +02:00
11 lines
283 B
Ruby
11 lines
283 B
Ruby
# frozen_string_literal: true
|
|
|
|
Vagrant.configure('2') do |config|
|
|
config.vm.box = 'generic/oracle8'
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
sudo dnf config-manager --set-enabled ol8_codeready_builder
|
|
SHELL
|
|
end
|
|
|
|
common = '../common'
|
|
load common if File.exist?(common)
|