From e2d6e664405292b100e7e3d0fdfa710fd2a32fab Mon Sep 17 00:00:00 2001 From: Matthew Rees Date: Thu, 13 Nov 2014 14:11:51 +0200 Subject: [PATCH] Revert URL-based key addition for Debian --- roles/ceph-common/tasks/install_on_debian.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/ceph-common/tasks/install_on_debian.yml b/roles/ceph-common/tasks/install_on_debian.yml index 721eb0fac..972210065 100644 --- a/roles/ceph-common/tasks/install_on_debian.yml +++ b/roles/ceph-common/tasks/install_on_debian.yml @@ -12,13 +12,13 @@ - name: Install the Ceph repository stable key apt_key: > - url={{ ceph_stable_key }} + data="{{ lookup('file', 'cephstable.asc') }}" state=present when: ceph_stable - name: Install the Ceph developement repository key apt_key: > - url={{ ceph_dev_key }} + data="{{ lookup('file', 'cephdev.asc') }}" state=present when: ceph_dev -- 2.39.5