Browse Source

Stop firewalld for rockylinux8 on Vagrant (#10252)

pull/10258/head
nltimv 1 year ago
committed by GitHub
parent
commit
35aaf97216
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      Vagrantfile

2
Vagrantfile

@ -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

Loading…
Cancel
Save