From 87c3a80974a0dafd84767b6ec3b1b2862a2d3485 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 15 Feb 2017 17:58:09 +0000 Subject: [PATCH] Name is longer than just the prefix. --- roles/mbs/common/templates/mbs-fedmsg.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/mbs/common/templates/mbs-fedmsg.py b/roles/mbs/common/templates/mbs-fedmsg.py index 3485e012de..3715f21b0e 100644 --- a/roles/mbs/common/templates/mbs-fedmsg.py +++ b/roles/mbs/common/templates/mbs-fedmsg.py @@ -1,5 +1,7 @@ +import socket + config = { # So that the MBS can find it's cert in /etc/fedmsg.d/ssl.py 'cert_prefix': 'mbs', - 'name': 'mbs', + 'name': 'mbs-%s' % socket.gethostname(), }