From: Travis Rhoden Date: Thu, 28 May 2015 02:00:31 +0000 (-0400) Subject: [RM-11406] use gpg.url() in SUSE too X-Git-Tag: v1.5.26~20^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2928e3a13311f028da9f329e8cdcbc56a1c7bba0;p=ceph-deploy.git [RM-11406] use gpg.url() in SUSE too Signed-off-by: Travis Rhoden --- diff --git a/ceph_deploy/hosts/suse/install.py b/ceph_deploy/hosts/suse/install.py index 93bf45f..c574e55 100644 --- a/ceph_deploy/hosts/suse/install.py +++ b/ceph_deploy/hosts/suse/install.py @@ -1,5 +1,6 @@ from ceph_deploy.util import templates, pkg_managers from ceph_deploy.lib import remoto +from ceph_deploy.util.paths import gpg import logging LOG = logging.getLogger(__name__) @@ -40,9 +41,7 @@ def install(distro, version_kind, version, adjust_repos, **kw): [ 'rpm', '--import', - "{protocol}://git.ceph.com/?p=ceph.git;a=blob_plain;f=keys/{key}.asc".format( - key=key, - protocol=protocol) + gpg.url(key, protocol=protocol) ] )