|
@@ -10,11 +10,9 @@
|
|
|
- set_fact:
|
|
|
l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}"
|
|
|
|
|
|
-- name: Ensure PyYaml and yum-utils are installed
|
|
|
+- name: Ensure various deps are installed
|
|
|
package: name={{ item }} state=present
|
|
|
- with_items:
|
|
|
- - PyYAML
|
|
|
- - yum-utils
|
|
|
+ with_items: "{{ required_packages }}"
|
|
|
when: not l_is_atomic | bool
|
|
|
|
|
|
- name: Gather Cluster facts and set is_containerized if needed
|