summaryrefslogtreecommitdiffstats
path: root/roles/contiv/tasks/packageManagerInstall.yml
blob: 8c8e7a7bd40c1e6b8f872c9ace57c66416b0d6d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
- name: Package Manager | Init the did_install fact
  set_fact:
    did_install: false

- include_tasks: pkgMgrInstallers/centos-install.yml
  when: ansible_os_family == "RedHat" and not openshift_is_atomic | bool

- name: Package Manager | Set fact saying we did CentOS package install
  set_fact:
    did_install: true
  when: ansible_os_family == "RedHat"