Stop firewalld for rockylinux8 on Vagrant (#10252)

pull/10258/head
nltimv 2023-06-27 03:02:30 +02:00 committed by GitHub
parent 25cb90bc2d
commit 35aaf97216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -225,7 +225,7 @@ Vagrant.configure("2") do |config|
end
# Disable firewalld on oraclelinux/redhat vms
if ["oraclelinux","oraclelinux8","rhel7","rhel8"].include? $os
if ["oraclelinux","oraclelinux8","rhel7","rhel8","rockylinux8"].include? $os
node.vm.provision "shell", inline: "systemctl stop firewalld; systemctl disable firewalld"
end