diff options
author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-06-18 22:21:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-18 22:21:48 -0400 |
commit | 865b3511d3df6fa5d938dda72e9d748c6c615c76 (patch) | |
tree | d28a590c30f208d9436e5aee3802dd4ea259e94a /roles/contiv/tasks/packageManagerInstall.yml | |
parent | 9545204f504f1dcf3de18272dc1fb951dd15f486 (diff) | |
parent | 76d1ee25b7570add1531ba232c46977d7201a122 (diff) | |
download | openshift-865b3511d3df6fa5d938dda72e9d748c6c615c76.tar.gz openshift-865b3511d3df6fa5d938dda72e9d748c6c615c76.tar.bz2 openshift-865b3511d3df6fa5d938dda72e9d748c6c615c76.tar.xz openshift-865b3511d3df6fa5d938dda72e9d748c6c615c76.zip |
Merge pull request #4329 from srampal/rhel_ose_aci
Merged by openshift-bot
Diffstat (limited to 'roles/contiv/tasks/packageManagerInstall.yml')
-rw-r--r-- | roles/contiv/tasks/packageManagerInstall.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/roles/contiv/tasks/packageManagerInstall.yml b/roles/contiv/tasks/packageManagerInstall.yml index 2eff1b85f..e0d48e643 100644 --- a/roles/contiv/tasks/packageManagerInstall.yml +++ b/roles/contiv/tasks/packageManagerInstall.yml @@ -4,9 +4,10 @@ did_install: false - include: pkgMgrInstallers/centos-install.yml - when: ansible_distribution == "CentOS" and not is_atomic + when: (ansible_os_family == "RedHat") and + not is_atomic - name: Package Manager | Set fact saying we did CentOS package install set_fact: did_install: true - when: ansible_distribution == "CentOS" + when: (ansible_os_family == "RedHat") |