diff options
author | rwatson <rwatson@FreeBSD.org> | 2002-03-11 19:26:29 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2002-03-11 19:26:29 +0000 |
commit | 89e30355de5f272942f06549cd4f6722c5a248e7 (patch) | |
tree | a6f7d85ace70ee576c3d9952d27311ddde644eb1 /etc/Makefile | |
parent | cf446bea56795da1b463bad98883efc41181b48f (diff) | |
download | FreeBSD-src-89e30355de5f272942f06549cd4f6722c5a248e7.zip FreeBSD-src-89e30355de5f272942f06549cd4f6722c5a248e7.tar.gz |
Clean up logging of security information a bit:
o Introduce /var/log/authentication.log, which will be the target for
auth.info and authpriv.info by default. Rotate on the same schedule
as most other logs. Create at installation.
o Remove logging of auth.info from /var/log/security.log, which will
return to being only for security feature subsystems (such as ipfw,
and so on).
This creates a special authentication log, which can now be searched
by scripts for authentication events.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/Makefile b/etc/Makefile index 3823a34..0bea465 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -130,6 +130,8 @@ distribution: ${DESTDIR}/etc/dumpdates ${INSTALL} -c -o nobody -g ${BINGRP} -m 644 /dev/null \ ${DESTDIR}/var/db/locate.database + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \ + ${DESTDIR}/var/log/authentication.log ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ ${DESTDIR}/var/log/lpd-errs ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \ |