From 43c8acf835022e4c72be31d6ae28124aa86897a9 Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Fri, 21 Feb 2020 10:16:34 +0100 Subject: [PATCH] copr: make sure iptables are disabled For some reason they can be started even if baseiptables: False maybe because the variable was initially set to True and then switched to False, so the iptables were already enabled. --- tasks/aws_cloud.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/aws_cloud.yml b/tasks/aws_cloud.yml index ebd533614d..1f75848ba6 100644 --- a/tasks/aws_cloud.yml +++ b/tasks/aws_cloud.yml @@ -133,3 +133,6 @@ # - name: Include SSH config import_role: name=basessh + +- name: Disable iptables, we have Security Groups in EC2 + service: name=iptables state=stopped enabled=no