result = paths.mon.monmap('mycluster', 'myhostname')
assert result.startswith('/')
assert result.endswith('tmp/mycluster.myhostname.monmap')
+
+ def test_gpg_url_release(self):
+ result = paths.gpg.url('release')
+ assert result == "https://git.ceph.com/?p=ceph.git;a=blob_plain;f=keys/release.asc"
+
+ def test_gpg_url_autobuild(self):
+ result = paths.gpg.url('autobuild')
+ assert result == "https://git.ceph.com/?p=ceph.git;a=blob_plain;f=keys/autobuild.asc"
# TODO: This needs to get unified once the packaging naming gets consistent
default_components.rpm = tuple(_base_components + ['ceph-radosgw'])
default_components.deb = tuple(_base_components + ['radosgw'])
+
+gpg_key_base_url = "https://git.ceph.com/?p=ceph.git;a=blob_plain;f=keys/"