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.
This commit is contained in:
Jakub Kadlcik 2020-02-21 10:16:34 +01:00 committed by Pierre-Yves Chibon
parent c35ba674fa
commit 43c8acf835

View file

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