Skip to content

Commit

Permalink
fix(oel9): stop/disable iptables and firewalld
Browse files Browse the repository at this point in the history
the logic was missed when enabling oel9, and it made the jenkins
job to get stuck on trying to connect to the CQL port
  • Loading branch information
fruch authored and roydahan committed Sep 16, 2024
1 parent e57d75b commit 006a69f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdcm/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -4626,7 +4626,7 @@ def scylla_configure_non_root_installation(self, node, devname):

def node_setup(self, node: BaseNode, verbose: bool = False, timeout: int = 3600): # pylint: disable=too-many-branches,too-many-statements,too-many-locals
node.wait_ssh_up(verbose=verbose, timeout=timeout)
if node.distro.is_centos9 or node.distro.is_rhel8 or node.distro.is_oel8 or node.distro.is_rocky8 or node.distro.is_rocky9:
if node.distro.is_rhel_like:
node.remoter.sudo('systemctl stop iptables', ignore_status=True)
node.remoter.sudo('systemctl disable iptables', ignore_status=True)
node.remoter.sudo('systemctl stop firewalld', ignore_status=True)
Expand Down

0 comments on commit 006a69f

Please sign in to comment.