diff options
| author | Adam Williamson <awilliam@redhat.com> | 2017-01-31 17:27:44 +0100 |
|---|---|---|
| committer | Adam Williamson <awilliam@redhat.com> | 2017-01-31 17:27:44 +0100 |
| commit | ff4da553738eb02d93a087bddc804368921a2db4 (patch) | |
| tree | cb1e7a12591eb38036f88d1df23ca7a327f53a07 /roles/openqa/server | |
| parent | b72309e6553def4f6ddd8496ba332efb250a7cd3 (diff) | |
| download | ansible-ff4da553738eb02d93a087bddc804368921a2db4.tar.gz ansible-ff4da553738eb02d93a087bddc804368921a2db4.tar.xz ansible-ff4da553738eb02d93a087bddc804368921a2db4.zip | |
openQA: install from stable for now
flippy flippy...u-t packages are untested, don't want them
getting to stable.
Diffstat (limited to 'roles/openqa/server')
| -rw-r--r-- | roles/openqa/server/tasks/main.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/roles/openqa/server/tasks/main.yml b/roles/openqa/server/tasks/main.yml index 8cc00f2ec..957290b6b 100644 --- a/roles/openqa/server/tasks/main.yml +++ b/roles/openqa/server/tasks/main.yml @@ -60,8 +60,11 @@ shell: /sbin/nologin when: "openqa_static_uid is defined" -- name: Install required packages (testing) - dnf: name={{ item }} state=present enablerepo="updates-testing" +# this is separate from the step below so we can easily flip it between +# stable and testing +- name: Install openQA packages +# dnf: name={{ item }} state=present enablerepo="updates-testing" + dnf: name={{ item }} state=present with_items: - openqa - openqa-httpd @@ -69,7 +72,7 @@ tags: - packages -- name: Install required packages +- name: Install various other required packages dnf: name={{ item }} state=present with_items: - libselinux-python |
