use shortname in keyring path

socket.gethostname may return a FQDN. Problem found in Linode.

Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
pull/3546/head
Patrick Donnelly 2019-01-25 18:48:28 -08:00 committed by mergify[bot]
parent 312867af56
commit 8cd0308f5f
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ def run_module():
module, list_keys(cluster, user, user_key, container_image))
elif state == "fetch_initial_keys":
hostname = socket.gethostname()
hostname = socket.gethostname().split('.', 1)[0]
user = "mon."
user_key = os.path.join(
"/var/lib/ceph/mon/" + cluster + "-" + hostname + "/keyring")