From 0861667cdd01f47186a80ffba12f6ce5dcfbeb3c Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Sat, 9 Aug 2014 08:26:19 +0000 Subject: [PATCH] Make the monitoring socket group-writable (new moksha release, whooo!) --- roles/fedmsg/base/templates/base.py.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/fedmsg/base/templates/base.py.j2 b/roles/fedmsg/base/templates/base.py.j2 index 675d9ee70c..a7dd5c2be8 100644 --- a/roles/fedmsg/base/templates/base.py.j2 +++ b/roles/fedmsg/base/templates/base.py.j2 @@ -70,6 +70,7 @@ try: config['moksha.monitoring.socket'] = \ 'ipc:///var/run/fedmsg/monitoring-%s.socket' % proc.name + config['moksha.monitoring.socket.mode'] = '770' except (OSError, ImportError): # We run into issues when trying to import psutil from mod_wsgi on rhel7 # but this feature is of no concern in that context, so just fail quietly.