summaryrefslogtreecommitdiffstats
path: root/roles/check-compose/tasks
diff options
context:
space:
mode:
authorAdam Williamson <awilliam@redhat.com>2016-10-28 12:32:32 -0700
committerAdam Williamson <awilliam@redhat.com>2016-10-28 12:32:32 -0700
commit88f5773810a4ba4eda7dbe11edbb26f8059b7cd6 (patch)
treec7d415f2645d37408f85fd785add2eb69b29155e /roles/check-compose/tasks
parent1c3477c6b7249f45c63eab245262d0fd73dfe8b9 (diff)
downloadansible-88f5773810a4ba4eda7dbe11edbb26f8059b7cd6.tar.gz
ansible-88f5773810a4ba4eda7dbe11edbb26f8059b7cd6.tar.xz
ansible-88f5773810a4ba4eda7dbe11edbb26f8059b7cd6.zip
check-compose: update git repo location
I moved it to Pagure.
Diffstat (limited to 'roles/check-compose/tasks')
-rw-r--r--roles/check-compose/tasks/main.yml15
1 files changed, 9 insertions, 6 deletions
diff --git a/roles/check-compose/tasks/main.yml b/roles/check-compose/tasks/main.yml
index 84d4550ba..60f6a3b30 100644
--- a/roles/check-compose/tasks/main.yml
+++ b/roles/check-compose/tasks/main.yml
@@ -63,17 +63,20 @@
chdir: /root/openQA-python-client
when: "gitclient|changed or instclient.rc > 0"
-- name: Check out fedora-qa (where check-compose lives)
+- name: Check out check-compose
git:
- repo: https://git.fedorahosted.org/git/fedora-qa.git
- dest: /root/fedora-qa
- register: gitqa
+ repo: https://pagure.io/fedora-qa/check-compose.git
+ dest: /root/check-compose
+ register: gitcc
+
+- name: Remove old fedora-qa checkout (temp)
+ file: path=/root/fedora-qa state=absent
- name: Install check-compose
command: "python setup.py install"
args:
- chdir: /root/fedora-qa/check-compose
- when: "gitqa|changed"
+ chdir: /root/check-compose
+ when: "gitcc|changed"
notify:
- restart fedmsg-hub