mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-18 07:14:03 +02:00
13 lines
455 B
Ruby
13 lines
455 B
Ruby
# frozen_string_literal: true
|
|
|
|
Vagrant.configure('2') do |config|
|
|
config.vm.box = "fedora/40-cloud-base"
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
SHELL
|
|
config.vm.provision "shell" do |s|
|
|
s.inline = "sudo dnf upgrade --refresh -y && sudo dnf install dnf-plugin-system-upgrade -y && sudo dnf system-upgrade download --releasever=41 -y && sudo dnf system-upgrade reboot -y"
|
|
end
|
|
end
|
|
|
|
common = '../common'
|
|
load common if File.exist?(common)
|