Browse Source

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.
OpenShift Merge Robot 7 years ago
parent
commit
0b84e0d47b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      playbooks/common/openshift-cluster/initialize_facts.yml

+ 1 - 1
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