From 006a69f7675dd72a10a6107f623a96999417ba55 Mon Sep 17 00:00:00 2001 From: Israel Fruchter Date: Thu, 12 Sep 2024 11:52:29 +0300 Subject: [PATCH] fix(oel9): stop/disable iptables and firewalld the logic was missed when enabling oel9, and it made the jenkins job to get stuck on trying to connect to the CQL port --- sdcm/cluster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdcm/cluster.py b/sdcm/cluster.py index 5528ccaed3..accf747f51 100644 --- a/sdcm/cluster.py +++ b/sdcm/cluster.py @@ -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)