diff --git a/roles/fedmsg/base/templates/policy.py.j2 b/roles/fedmsg/base/templates/policy.py.j2 index 9aa72b9d08..7bed23776d 100644 --- a/roles/fedmsg/base/templates/policy.py.j2 +++ b/roles/fedmsg/base/templates/policy.py.j2 @@ -88,6 +88,14 @@ config = dict( "bodhi-relepel01.%s" % suffix, ], + # This comes from our hook in configs/system/fedora-updates-push + topic_prefix + "bodhi.updates.fedora.sync": [ + "bodhi-releng04.%s" % suffix, + ], + # Similarly, this is frome configs/system/fedora-epel-push + topic_prefix + "bodhi.updates.epel.sync": [ + "bodhi-relepel01.%s" % suffix, + ], # Compose (rel-eng) messages (use the bodhi certs) topic_prefix + "compose.rawhide.start": [ diff --git a/roles/fedmsg/base/templates/ssl.py.j2 b/roles/fedmsg/base/templates/ssl.py.j2 index 2c7478f8d0..1505dda595 100644 --- a/roles/fedmsg/base/templates/ssl.py.j2 +++ b/roles/fedmsg/base/templates/ssl.py.j2 @@ -79,6 +79,9 @@ config = dict( ("bodhi.releng02", "bodhi-releng02.%s" % suffix), ("bodhi.releng03", "bodhi-releng03.%s" % suffix), ("bodhi.releng04", "bodhi-releng04.%s" % suffix), + ] + [ + ("ftpsync.relepel01", "ftpsync-relepel01.%s" % suffix), + ("ftpsync.releng04", "ftpsync-releng04.%s" % suffix), ] + [ ("busmon_consumers.busgateway01", "busmon-busgateway01.%s" % suffix), ("shell.busgateway01", "shell-busgateway01.%s" % suffix),