From 635df5b4cbcd7b24c825e01d9dd66d3a4274c4c7 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 14 Mar 2010 15:28:31 +0200 Subject: [PATCH] auth: Auth master process is now running as default_internal_user by default. Workers are still running as root, so PAM will continue to work as before. --HG-- branch : HEAD --- src/auth/auth-settings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/auth/auth-settings.c b/src/auth/auth-settings.c index 620d1eb8f2..72fe966f0b 100644 --- a/src/auth/auth-settings.c +++ b/src/auth/auth-settings.c @@ -40,7 +40,7 @@ struct service_settings auth_service_settings = { .protocol = "", .type = "", .executable = "auth", - .user = "", + .user = "$default_internal_user", .group = "", .privileged_group = "", .extra_groups = "", @@ -62,7 +62,7 @@ struct service_settings auth_service_settings = { /* */ static struct file_listener_settings auth_worker_unix_listeners_array[] = { - { "auth-worker", 0600, "", "" } + { "auth-worker", 0600, "$default_internal_user", "" } }; static struct file_listener_settings *auth_worker_unix_listeners[] = { &auth_worker_unix_listeners_array[0] -- 2.47.3