Skip to content
Snippets Groups Projects
Unverified Commit 73c2722d authored by Max Gautier's avatar Max Gautier Committed by GitHub
Browse files
parent a5714a8c
No related branches found
No related tags found
No related merge requests found
...@@ -246,6 +246,13 @@ Vagrant.configure("2") do |config| ...@@ -246,6 +246,13 @@ Vagrant.configure("2") do |config|
SHELL SHELL
end end
# Rockylinux boxes needs UEFI
if ["rockylinux8", "rockylinux9"].include? $os
config.vm.provider "libvirt" do |domain|
domain.loader = "/usr/share/OVMF/x64/OVMF_CODE.fd"
end
end
# Disable firewalld on oraclelinux/redhat vms # Disable firewalld on oraclelinux/redhat vms
if ["oraclelinux","oraclelinux8","rhel7","rhel8","rockylinux8"].include? $os if ["oraclelinux","oraclelinux8","rhel7","rhel8","rockylinux8"].include? $os
node.vm.provision "shell", inline: "systemctl stop firewalld; systemctl disable firewalld" node.vm.provision "shell", inline: "systemctl stop firewalld; systemctl disable firewalld"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment