diff options
author | Scott Dodson <sdodson@redhat.com> | 2015-12-16 10:55:07 -0500 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2015-12-16 10:55:07 -0500 |
commit | 5e2e55e4aa09468a054ce7c9901c51d9563cc85a (patch) | |
tree | f6301c4e8952fc74de3359b91fc8d03a2f77407d | |
parent | c1468c4cf82c553986af9cc7825a4009b0d53962 (diff) | |
download | openshift-5e2e55e4aa09468a054ce7c9901c51d9563cc85a.tar.gz openshift-5e2e55e4aa09468a054ce7c9901c51d9563cc85a.tar.bz2 openshift-5e2e55e4aa09468a054ce7c9901c51d9563cc85a.tar.xz openshift-5e2e55e4aa09468a054ce7c9901c51d9563cc85a.zip |
Install httpd-tools when not is_atomic
-rw-r--r-- | roles/openshift_master/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml index 0695693ff..405183186 100644 --- a/roles/openshift_master/tasks/main.yml +++ b/roles/openshift_master/tasks/main.yml @@ -148,7 +148,7 @@ - name: Install httpd-tools if needed action: "{{ ansible_pkg_mgr }} name=httpd-tools state=present" when: (item.kind == 'HTPasswdPasswordIdentityProvider') and - not openshift.common.is_containerized | bool + not openshift.common.is_atomic | bool with_items: openshift.master.identity_providers - name: Ensure htpasswd directory exists |