diff options
| author | Adam Williamson <awilliam@redhat.com> | 2016-03-08 14:09:01 -0800 |
|---|---|---|
| committer | Adam Williamson <awilliam@redhat.com> | 2016-03-08 14:09:28 -0800 |
| commit | a8eba01a5687f02b358ef0cf49c7ed0d482f9247 (patch) | |
| tree | 3ff6285835af28c51028092b0684a812a2c4bf84 /roles/check-compose/tasks | |
| parent | 3bb54e2e0d7c834ebae333a4161153d919a6fa20 (diff) | |
| download | ansible-a8eba01a5687f02b358ef0cf49c7ed0d482f9247.tar.gz ansible-a8eba01a5687f02b358ef0cf49c7ed0d482f9247.tar.xz ansible-a8eba01a5687f02b358ef0cf49c7ed0d482f9247.zip | |
openqa/check-compose: tweak package installs and sources
we need some from updates-testing for now. also, we need
openqa-httpd for the server.
Diffstat (limited to 'roles/check-compose/tasks')
| -rw-r--r-- | roles/check-compose/tasks/main.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/roles/check-compose/tasks/main.yml b/roles/check-compose/tasks/main.yml index bdb43697c..84d4550ba 100644 --- a/roles/check-compose/tasks/main.yml +++ b/roles/check-compose/tasks/main.yml @@ -27,10 +27,17 @@ # client.conf will be in place (and localhost default would be correct # anyhow) +# note: we need updates-testing until fedfind/wikitcms 2.x go stable +- name: Install required packages (testing) + dnf: name={{ item }} state=present enablerepo="updates-testing" + with_items: + - fedfind + tags: + - packages + - name: Install required packages dnf: name={{ item }} state=present with_items: - - fedfind - python2-fedmsg-consumers - python-setuptools - python-six |
