From 9dc6a8d0a12eac53409c806fa0e9592d2c0329bb Mon Sep 17 00:00:00 2001 From: Travis Rhoden Date: Thu, 28 May 2015 11:56:34 -0400 Subject: [PATCH] [RM-11572] use http to get GPG key on Wheezy Fixes: #11572 Signed-off-by: Travis Rhoden --- ceph_deploy/hosts/debian/install.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ceph_deploy/hosts/debian/install.py b/ceph_deploy/hosts/debian/install.py index b1ffb76..a16b394 100644 --- a/ceph_deploy/hosts/debian/install.py +++ b/ceph_deploy/hosts/debian/install.py @@ -31,13 +31,17 @@ def install(distro, version_kind, version, adjust_repos, **kw): ) if adjust_repos: + # Wheezy does not like the git.ceph.com SSL cert + protocol = 'https' + if codename == 'wheezy': + protocol = 'http' remoto.process.run( distro.conn, [ 'wget', '-O', '{key}.asc'.format(key=key), - gpg.url(key), + gpg.url(key, protocol=protocol), ], stop_on_nonzero=False, ) -- 2.47.3