diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2017-09-25 02:49:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-25 02:49:42 -0700 |
commit | 0b84e0d47b5912afb6db4f1964cbb06defcab09f (patch) | |
tree | c9580242b3abbd984ee6fea8532ded03d3794d80 | |
parent | 4c46c0748b06a088d2dd5bb0af439e55718271f5 (diff) | |
parent | 7d6fbb02c5467e22cfbece98120bc103fd87a132 (diff) | |
download | openshift-0b84e0d47b5912afb6db4f1964cbb06defcab09f.tar.gz openshift-0b84e0d47b5912afb6db4f1964cbb06defcab09f.tar.bz2 openshift-0b84e0d47b5912afb6db4f1964cbb06defcab09f.tar.xz openshift-0b84e0d47b5912afb6db4f1964cbb06defcab09f.zip |
Merge pull request #5513 from lucastheisen/master
Automatic merge from submit-queue
resolve #5428: python-dbus not found
`python-dbus` is not available in centos standard repos, but:
> It appears python-dbus is just a reference to dbus-python
and `dbus-python` is.
-rw-r--r-- | playbooks/common/openshift-cluster/initialize_facts.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/common/openshift-cluster/initialize_facts.yml b/playbooks/common/openshift-cluster/initialize_facts.yml index 517023ba1..be2f8b5f4 100644 --- a/playbooks/common/openshift-cluster/initialize_facts.yml +++ b/playbooks/common/openshift-cluster/initialize_facts.yml @@ -93,7 +93,7 @@ state: present with_items: - iproute - - "{{ 'python3-dbus' if ansible_distribution == 'Fedora' else 'python-dbus' }}" + - "{{ 'python3-dbus' if ansible_distribution == 'Fedora' else 'dbus-python' }}" - "{{ 'python3-PyYAML' if ansible_distribution == 'Fedora' else 'PyYAML' }}" - yum-utils |