mirror of https://github.com/ceph/ceph-ansible.git
use shortname in keyring path
socket.gethostname may return a FQDN. Problem found in Linode.
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
(cherry picked from commit 8cd0308f5f
)
pull/3667/head
parent
b39345751f
commit
cb92299756
|
@ -612,7 +612,7 @@ def run_module():
|
|||
module, list_keys(cluster, user, user_key, containerized))
|
||||
|
||||
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")
|
||||
|
|
Loading…
Reference in New Issue