diff options
author | Stephen Smoogen <smooge@redhat.com> | 2017-02-15 19:52:07 +0000 |
---|---|---|
committer | Stephen Smoogen <smooge@redhat.com> | 2017-02-15 19:52:07 +0000 |
commit | d4b9ad71b8d18ab26cc925e49ee0c82c05477ac7 (patch) | |
tree | c0c9cfecb1080dd810c86b78ace71b72b2f4001f | |
parent | 14a85f11f51cc4e27d5fb0407b93bd4bb701ea0a (diff) | |
parent | 87117e1f3a44ca6a0c3d2e7daea8e261768950c6 (diff) | |
download | ansible-d4b9ad71b8d18ab26cc925e49ee0c82c05477ac7.tar.gz ansible-d4b9ad71b8d18ab26cc925e49ee0c82c05477ac7.tar.xz ansible-d4b9ad71b8d18ab26cc925e49ee0c82c05477ac7.zip |
ARGH KEEP COLIDING Merge branch 'master' of /git/ansible
-rw-r--r-- | roles/mbs/common/templates/mbs-fedmsg.py | 2 |
1 files changed, 1 insertions, 1 deletions
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], } |