summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks/install_rpms.yml
blob: c96e9cdafa6587a5e6ac0c3dce72a4861b0eee45 (plain)
1
2
3
4
5
6
7
8
9
---
- name: install needed rpm(s)
  package:
    name: "{{ item }}"
    state: present
  with_items: "{{ r_openshift_node_image_prep_packages }}"
  register: result
  until: result is succeeded
  when: not (openshift_is_atomic | default(False) | bool)