]> git.apps.os.sepia.ceph.com Git - ceph-cm-ansible.git/commitdiff
Include /keys in path to key files, and document what's expected 196/head
authorDan Mick <dan.mick@redhat.com>
Tue, 16 Feb 2016 00:11:38 +0000 (16:11 -0800)
committerDan Mick <dan.mick@redhat.com>
Tue, 16 Feb 2016 00:15:24 +0000 (16:15 -0800)
Signed-off-by: Dan Mick <dan.mick@redhat.com>
roles/testnode/README.rst
roles/testnode/tasks/apt/repos.yml
roles/testnode/tasks/yum/gpg_keys.yml

index 87e70e5673a8b12f2173c46ad55a373916805503..040103c8e6e322b917bbf65fd1f0ea28bf0bd756 100644 (file)
@@ -43,7 +43,7 @@ The host to use as a github mirror::
 
     git_mirror_host: git.ceph.com
 
-The host to find package-signing keys on:
+The host to find package-signing keys on (at https://{{key_host}}/keys/{release,autobuild}.asc)::
 
     key_host: download.ceph.com
 
index ad45dce83559513194911cf9f5f1f3c03cda536d..131923c2877811690b3464f5a7e4ced70299e55e 100644 (file)
@@ -35,8 +35,8 @@
     url: "{{ item }}"
     state: present
   with_items:
-    - "http://{{ key_host }}/autobuild.asc"
-    - "http://{{ key_host }}/release.asc"
+    - "http://{{ key_host }}/keys/autobuild.asc"
+    - "http://{{ key_host }}/keys/release.asc"
   # try for 2 minutes before failing
   retries: 24
   delay: 5
index b2540d868de878f11fb7f8ed8b3755c0e8cc5fa4..5c216c984cdc0a8095509f52c1f89e1c706a3963 100644 (file)
@@ -13,6 +13,6 @@
     key: "{{ item }}"
     validate_certs: no
   with_items:
-    - 'https://{{ key_host }}/release.asc'
-    - 'https://{{ key_host }}/autobuild.asc'
+    - 'https://{{ key_host }}/keys/release.asc'
+    - 'https://{{ key_host }}/keys/autobuild.asc'
   register: gpg_keys