Log process accounting activation/deactivation.

Useful for some auditing purposes.

Submitted by: Christian S.J. Peron <maneo@bsdpro.com>
PR: kern/54529
This commit is contained in:
Bosko Milekic 2003-07-16 03:59:50 +00:00
parent e7091e1518
commit d2dbf5bc0b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=117664

View File

@ -187,6 +187,7 @@ acct(td, uap)
acctp = savacctp = NULLVP;
crfree(acctcred != NOCRED ? acctcred : savacctcred);
acctcred = savacctcred = NOCRED;
log(LOG_NOTICE, "Process accounting disabled.\n");
}
if (uap->path == NULL) {
mtx_unlock(&acct_mtx);
@ -202,6 +203,7 @@ acct(td, uap)
acctflags = flags;
callout_init(&acctwatch_callout, 0);
mtx_unlock(&acct_mtx);
log(LOG_NOTICE, "Process accounting enabled.\n");
acctwatch(NULL);
done2:
mtx_unlock(&Giant);