diff options
author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-04-07 09:50:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 09:50:11 -0500 |
commit | 94d3945e9734c9848d6c8bab907fa08c80aa917b (patch) | |
tree | bb91c9dd59b6715aa2c682cf73b7d514c9ccbb9f /playbooks/common | |
parent | 75e79b3f8756c05ac504143b2524d587a93f8dd7 (diff) | |
parent | 9cc4d2f713235db6ca8bbbc3d1813ed41924051e (diff) | |
download | openshift-94d3945e9734c9848d6c8bab907fa08c80aa917b.tar.gz openshift-94d3945e9734c9848d6c8bab907fa08c80aa917b.tar.bz2 openshift-94d3945e9734c9848d6c8bab907fa08c80aa917b.tar.xz openshift-94d3945e9734c9848d6c8bab907fa08c80aa917b.zip |
Merge pull request #3871 from mtnbikenc/fix-iptables-check
Merged by openshift-bot
Diffstat (limited to 'playbooks/common')
-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 |