diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2016-01-25 17:36:18 -0500 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2016-01-25 17:36:18 -0500 |
commit | 8a05a719722cea71a3ed6e70973052f05e434738 (patch) | |
tree | 5a28f78e05773300596f96806505a2e51a9c2477 /roles/etcd_ca/tasks | |
parent | 4a2e65e5500eced93722ae6b39c7994a270563d2 (diff) | |
download | openshift-8a05a719722cea71a3ed6e70973052f05e434738.tar.gz openshift-8a05a719722cea71a3ed6e70973052f05e434738.tar.bz2 openshift-8a05a719722cea71a3ed6e70973052f05e434738.tar.xz openshift-8a05a719722cea71a3ed6e70973052f05e434738.zip |
Ensure openssl present for etcd_ca
Diffstat (limited to 'roles/etcd_ca/tasks')
-rw-r--r-- | roles/etcd_ca/tasks/main.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/etcd_ca/tasks/main.yml b/roles/etcd_ca/tasks/main.yml index d32f5e48c..cf7bc00a3 100644 --- a/roles/etcd_ca/tasks/main.yml +++ b/roles/etcd_ca/tasks/main.yml @@ -1,4 +1,8 @@ --- +- name: Install openssl + action: "{{ ansible_pkg_mgr }} name=openssl state=present" + when: not openshift.common.is_atomic | bool + - file: path: "{{ item }}" state: directory |