Date: Thu, 3 Feb 2011 10:37:44 +0000 (UTC) From: Pawel Jakub Dawidek <pjd@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r218214 - head/sbin/hastd Message-ID: <201102031037.p13AbiOd042605@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pjd Date: Thu Feb 3 10:37:44 2011 New Revision: 218214 URL: http://svn.freebsd.org/changeset/base/218214 Log: Let the caller log info about successful privilege drop. We don't want to log this in hastctl. MFC after: 1 week Modified: head/sbin/hastd/primary.c head/sbin/hastd/secondary.c head/sbin/hastd/subr.c Modified: head/sbin/hastd/primary.c ============================================================================== --- head/sbin/hastd/primary.c Thu Feb 3 10:29:04 2011 (r218213) +++ head/sbin/hastd/primary.c Thu Feb 3 10:37:44 2011 (r218214) @@ -850,6 +850,7 @@ hastd_primary(struct hast_resource *res) cleanup(res); exit(EX_CONFIG); } + pjdlog_info("Privileges successfully dropped."); /* * Create the guard thread first, so we can handle signals from the Modified: head/sbin/hastd/secondary.c ============================================================================== --- head/sbin/hastd/secondary.c Thu Feb 3 10:29:04 2011 (r218213) +++ head/sbin/hastd/secondary.c Thu Feb 3 10:37:44 2011 (r218214) @@ -414,6 +414,7 @@ hastd_secondary(struct hast_resource *re if (drop_privs() != 0) exit(EX_CONFIG); + pjdlog_info("Privileges successfully dropped."); /* * Create the control thread before sending any event to the parent, Modified: head/sbin/hastd/subr.c ============================================================================== --- head/sbin/hastd/subr.c Thu Feb 3 10:29:04 2011 (r218213) +++ head/sbin/hastd/subr.c Thu Feb 3 10:37:44 2011 (r218214) @@ -184,7 +184,5 @@ drop_privs(void) PJDLOG_VERIFY(getgroups(1, gidset) == 1); PJDLOG_VERIFY(gidset[0] == pw->pw_gid); - pjdlog_info("Privileges successfully dropped."); - return (0); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201102031037.p13AbiOd042605>