]> git.apps.os.sepia.ceph.com Git - ceph-cm-ansible.git/commitdiff
use static versions of release.asc and autobuild.asc 107/head
authorSage Weil <sage@redhat.com>
Wed, 12 Aug 2015 19:23:21 +0000 (15:23 -0400)
committerSage Weil <sage@redhat.com>
Wed, 12 Aug 2015 19:23:21 +0000 (15:23 -0400)
Pulling them out of gitweb hits the server too hard.

Signed-off-by: Sage Weil <sage@redhat.com>
roles/testnode/tasks/apt/repos.yml
roles/testnode/tasks/yum/gpg_keys.yml

index 68996516426eb0a8fc89da6fe9e0485a1b16f9cc..41ae7dbe8605f9dfc0e9a6ff44488befc19b6d79 100644 (file)
@@ -22,8 +22,8 @@
     url: "{{ item }}"
     state: present
   with_items:
-    - "http://{{ git_mirror_host }}/?p=ceph.git;a=blob_plain;f=keys/autobuild.asc;hb=HEAD"
-    - "http://{{ git_mirror_host }}/?p=ceph.git;a=blob_plain;f=keys/release.asc"
+    - "http://{{ git_mirror_host }}/autobuild.asc"
+    - "http://{{ git_mirror_host }}/release.asc"
 
 # required for apt_repository
 - name: Install python-apt
index 0f1f249d048b48daad800766531d7163f1542e0a..104344fbffc0d974f98f2b8abdfe1e4b0f5d9370 100644 (file)
@@ -13,6 +13,6 @@
     key: "{{ item }}"
     validate_certs: no
   with_items:
-    - 'https://{{ git_mirror_host }}/?p=ceph.git;a=blob_plain;f=keys/release.asc'
-    - 'https://{{ git_mirror_host }}/?p=ceph.git;a=blob_plain;f=keys/autobuild.asc'
+    - 'https://{{ git_mirror_host }}/release.asc'
+    - 'https://{{ git_mirror_host }}/autobuild.asc'
   register: gpg_keys