From 2b5209acaa23577bbfab1d2a433ddd99439e62b9 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Sun, 3 Nov 1996 03:11:57 +0000 Subject: [PATCH] I haven't had a single contraversial commit all week, so what the heck. Watch through our hidden camera, ladies and gentlemen, as this one-line addition to the syslog output generates hundreds of thousands of lines of email in response, all from people decrying the evils of electronic noise pollution! :-) What this change does, simply speaking, is syslog it every time someone changes their local password. I need this at a local ISP to tell whether people are reacting to expires in a timely fashion or not. To disable it, uncomment -DLOGGING in the Makefile. If your users change their passwords so often as to fill your logfile, then you may also have another administrative problem to deal with. --- usr.bin/passwd/Makefile | 4 ++-- usr.bin/passwd/local_passwd.c | 9 ++++++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/usr.bin/passwd/Makefile b/usr.bin/passwd/Makefile index b5d7a3c1402..247e23c3222 100644 --- a/usr.bin/passwd/Makefile +++ b/usr.bin/passwd/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.3 (Berkeley) 4/2/94 -# $Id: Makefile,v 1.18 1995/09/14 21:02:16 gibbs Exp $ +# $Id: Makefile,v 1.19 1996/02/23 16:08:23 wpaul Exp $ PROG= passwd SRCS= local_passwd.c yppasswd_private_xdr.c yppasswd_comm.c yp_passwd.c \ @@ -13,7 +13,7 @@ LDADD= -lcrypt -lrpcsvc CFLAGS+= -DCRYPT -DYP -I. -I${.CURDIR} -I${.CURDIR}/../../usr.sbin/vipw \ -I${.CURDIR}/../../usr.bin/chpass -I${.CURDIR}/../../libexec/ypxfr \ - -I${.CURDIR}/../../usr.sbin/rpc.yppasswdd -Dyp_error=warnx + -I${.CURDIR}/../../usr.sbin/rpc.yppasswdd -Dyp_error=warnx -DLOGGING SRCS+= ypxfr_misc.c yp_clnt.c yppasswd_clnt.c diff --git a/usr.bin/passwd/local_passwd.c b/usr.bin/passwd/local_passwd.c index 73ec1f83790..04b78dd80fe 100644 --- a/usr.bin/passwd/local_passwd.c +++ b/usr.bin/passwd/local_passwd.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: local_passwd.c,v 1.8 1995/12/16 09:45:12 markm Exp $ + * $Id: local_passwd.c,v 1.9 1996/07/01 19:38:24 guido Exp $ */ #ifndef lint @@ -56,6 +56,10 @@ static const char sccsid[] = "@(#)local_passwd.c 8.3 (Berkeley) 4/2/94"; #include #endif +#ifdef LOGGING +#include +#endif + #include "extern.h" static uid_t uid; @@ -178,5 +182,8 @@ local_passwd(uname) if (!pw_mkdb(uname)) pw_error((char *)NULL, 0, 1); +#ifdef LOGGING + syslog(LOG_DEBUG, "user %s changed their local password\n", uname); +#endif return (0); }