diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-11-24 17:02:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-24 17:02:50 -0500 |
commit | 0338debbd35254c884487ceb1064b1eabde0149e (patch) | |
tree | 1123b1dc344f0342aaafb990ff95d30adb405b0c /playbooks/init | |
parent | bd5c01de84be6ccedb7e8b00dddfc6e6e3d0bebf (diff) | |
parent | e4db872a66bdb41f6c45b7a3235d09a439c08936 (diff) | |
download | openshift-0338debbd35254c884487ceb1064b1eabde0149e.tar.gz openshift-0338debbd35254c884487ceb1064b1eabde0149e.tar.bz2 openshift-0338debbd35254c884487ceb1064b1eabde0149e.tar.xz openshift-0338debbd35254c884487ceb1064b1eabde0149e.zip |
Merge pull request #6227 from adelton/issue-5517
Workaround the fact that package state=present with dnf fails for already installed but excluded packages.
Diffstat (limited to 'playbooks/init')
-rw-r--r-- | playbooks/init/facts.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/playbooks/init/facts.yml b/playbooks/init/facts.yml index 7439313b7..a2fc17b7f 100644 --- a/playbooks/init/facts.yml +++ b/playbooks/init/facts.yml @@ -139,6 +139,7 @@ - name: initialize_facts set_fact repoquery command set_fact: repoquery_cmd: "{{ 'dnf repoquery --latest-limit 1 -d 0' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins' }}" + repoquery_installed: "{{ 'dnf repoquery --latest-limit 1 -d 0 --disableexcludes=all --installed' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins --installed' }}" - name: initialize_facts set_fact on openshift_docker_hosted_registry_network set_fact: |