Max Gautier
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
7 additions and
0 deletions
-
Vagrantfile
|
@ -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" |
|
|