diff options
author | Russell Teague <rteague@redhat.com> | 2017-04-06 10:22:16 -0400 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2017-04-06 10:22:16 -0400 |
commit | 9cc4d2f713235db6ca8bbbc3d1813ed41924051e (patch) | |
tree | 516c302176d07cdb5257c8140d2f2f2023fd18ae /playbooks | |
parent | af8547120016ea0e1b01337805235428e2164f3f (diff) | |
download | openshift-9cc4d2f713235db6ca8bbbc3d1813ed41924051e.tar.gz openshift-9cc4d2f713235db6ca8bbbc3d1813ed41924051e.tar.bz2 openshift-9cc4d2f713235db6ca8bbbc3d1813ed41924051e.tar.xz openshift-9cc4d2f713235db6ca8bbbc3d1813ed41924051e.zip |
Switch from ignoring to passing on checks
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/init.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/init.yml b/playbooks/common/openshift-cluster/upgrades/init.yml index bcbc4ee02..01d151eb9 100644 --- a/playbooks/common/openshift-cluster/upgrades/init.yml +++ b/playbooks/common/openshift-cluster/upgrades/init.yml @@ -70,8 +70,8 @@ tasks: - name: Check if iptables is running command: systemctl status iptables - ignore_errors: true changed_when: false + failed_when: false register: service_iptables_status - name: Set fact os_firewall_use_firewalld FALSE for iptables |