diff options
author | Jason DeTiberus <detiber@gmail.com> | 2016-05-20 13:32:27 -0400 |
---|---|---|
committer | Jason DeTiberus <detiber@gmail.com> | 2016-05-20 13:32:27 -0400 |
commit | e8316eea9956568f907db93b541115e5aaeb21a3 (patch) | |
tree | 8d489d8b466a3e1d48857f7d30c9e68d4d09cbda | |
parent | c78e91c7d4a304cc5d20135e96206008407c5f6f (diff) | |
parent | 087ca095ec720c3132324e29c129bd17e3d822e5 (diff) | |
download | openshift-e8316eea9956568f907db93b541115e5aaeb21a3.tar.gz openshift-e8316eea9956568f907db93b541115e5aaeb21a3.tar.bz2 openshift-e8316eea9956568f907db93b541115e5aaeb21a3.tar.xz openshift-e8316eea9956568f907db93b541115e5aaeb21a3.zip |
Merge pull request #1924 from abutcher/BZ1337425
Bug 1337425 - [ansible-2.0] installer failed if yum-utils wasn't installed
-rw-r--r-- | roles/openshift_facts/tasks/main.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/openshift_facts/tasks/main.yml b/roles/openshift_facts/tasks/main.yml index f092f021f..ca1a9b1e4 100644 --- a/roles/openshift_facts/tasks/main.yml +++ b/roles/openshift_facts/tasks/main.yml @@ -19,6 +19,10 @@ action: "{{ ansible_pkg_mgr }} name=PyYAML state=present" when: not l_is_atomic | bool +- name: Ensure yum-utils is installed + action: "{{ ansible_pkg_mgr }} name=yum-utils state=present" + when: not l_is_atomic | bool + - name: Gather Cluster facts and set is_containerized if needed openshift_facts: role: common |