From: Sage Weil Date: Wed, 12 Aug 2015 19:23:21 +0000 (-0400) Subject: use static versions of release.asc and autobuild.asc X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F107%2Fhead;p=ceph-cm-ansible.git use static versions of release.asc and autobuild.asc Pulling them out of gitweb hits the server too hard. Signed-off-by: Sage Weil --- diff --git a/roles/testnode/tasks/apt/repos.yml b/roles/testnode/tasks/apt/repos.yml index 68996516..41ae7dbe 100644 --- a/roles/testnode/tasks/apt/repos.yml +++ b/roles/testnode/tasks/apt/repos.yml @@ -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 diff --git a/roles/testnode/tasks/yum/gpg_keys.yml b/roles/testnode/tasks/yum/gpg_keys.yml index 0f1f249d..104344fb 100644 --- a/roles/testnode/tasks/yum/gpg_keys.yml +++ b/roles/testnode/tasks/yum/gpg_keys.yml @@ -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