From 87117e1f3a44ca6a0c3d2e7daea8e261768950c6 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 15 Feb 2017 19:51:28 +0000 Subject: Not the fqdn. Just the first part. --- roles/mbs/common/templates/mbs-fedmsg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mbs/common/templates/mbs-fedmsg.py b/roles/mbs/common/templates/mbs-fedmsg.py index 3715f21b0..1d8c824ba 100644 --- a/roles/mbs/common/templates/mbs-fedmsg.py +++ b/roles/mbs/common/templates/mbs-fedmsg.py @@ -3,5 +3,5 @@ import socket config = { # So that the MBS can find it's cert in /etc/fedmsg.d/ssl.py 'cert_prefix': 'mbs', - 'name': 'mbs-%s' % socket.gethostname(), + 'name': 'mbs.%s' % socket.gethostname().split('.', 1)[0], } -- cgit