From a062bf63df0564c1c3fe1761f7c837b003f6ce96 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 7 Feb 2018 16:48:28 +0200 Subject: [PATCH] ipc: Change ipc socket's owner to $default_internal_user This is mainly used by director process, which runs as $default_internal_user. This setting change is always required for director installations. Also the ipc process itself is already running as $default_internal_user so this should be a rather safe change. --- src/ipc/ipc-settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipc/ipc-settings.c b/src/ipc/ipc-settings.c index 5faba25cdb..d1610d6252 100644 --- a/src/ipc/ipc-settings.c +++ b/src/ipc/ipc-settings.c @@ -9,7 +9,7 @@ /* */ static struct file_listener_settings ipc_unix_listeners_array[] = { - { "ipc", 0600, "", "" }, + { "ipc", 0600, "$default_internal_user", "" }, { "login/ipc-proxy", 0600, "$default_login_user", "" } }; static struct file_listener_settings *ipc_unix_listeners[] = {