summaryrefslogtreecommitdiffstats
path: root/roles/copr/backend/files/provision
diff options
context:
space:
mode:
authorclime <clime@redhat.com>2017-02-14 17:06:52 +0100
committerclime <clime@redhat.com>2017-02-15 11:15:27 +0100
commite957d5785b47f911a74984e5c53fea864b171a37 (patch)
tree229f8b49406c849007cc2f00c5e245460e28bfed /roles/copr/backend/files/provision
parentbfc98713865f77c15c2a8df9d2634cc6492399f7 (diff)
downloadansible-e957d5785b47f911a74984e5c53fea864b171a37.tar.gz
ansible-e957d5785b47f911a74984e5c53fea864b171a37.tar.xz
ansible-e957d5785b47f911a74984e5c53fea864b171a37.zip
copr-backend: update provision configs for swapmounted ppc64le image
Diffstat (limited to 'roles/copr/backend/files/provision')
-rw-r--r--roles/copr/backend/files/provision/provision_builder_tasks_ppc64le.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/roles/copr/backend/files/provision/provision_builder_tasks_ppc64le.yml b/roles/copr/backend/files/provision/provision_builder_tasks_ppc64le.yml
index 9effa0fbc..1b2e89dc0 100644
--- a/roles/copr/backend/files/provision/provision_builder_tasks_ppc64le.yml
+++ b/roles/copr/backend/files/provision/provision_builder_tasks_ppc64le.yml
@@ -4,9 +4,6 @@
- name: set bigger timeout for yum
ini_file: dest=/etc/yum.conf section=main option=timeout value=1000
-- name: install distribution-gpg-keys which are right now not in fedora main
- shell: dnf install -y https://kojipkgs.fedoraproject.org//packages/distribution-gpg-keys/1.5/1.fc24/noarch/distribution-gpg-keys-1.5-1.fc24.noarch.rpm
-
- name: install pkgs
yum: state=present pkg={{ item }}
with_items:
@@ -63,6 +60,7 @@
- name: symlink F26 configs to rawhide ones
shell: for cfg in /etc/mock/fedora-rawhide-*.cfg; do ln -s $cfg `echo $cfg|sed 's/rawhide/26/'`; done
+ when: prepare_base_image is defined
# ansible doesn't support simultaneously usage of async and with_* options
# it's not even planned for implementation, see https://github.com/ansible/ansible/issues/5841