diff options
author | Greg Larkin <glarkin@FreeBSD.org> | 2008-09-11 00:30:09 +0000 |
---|---|---|
committer | Greg Larkin <glarkin@FreeBSD.org> | 2008-09-11 00:30:09 +0000 |
commit | 6e60a5693150f9fd17116dbb9c522234577c2c2a (patch) | |
tree | 5e57af0c81e4a5c472e37b68f3af2e527df207c0 /UPDATING | |
parent | 2f6da9c8fa1100c3589265b896993b9e0535ba70 (diff) |
- Fixed logcheck script silent failure in previous commit
- Added handling for crontab installation problems
- Incorported security fixes from PR opened after previous commit
- Added UPDATING entry since configuration options have changed
fairly significantly
PR: ports/122842
Submitted by: Cezary Morga <cm@therek.net>
PR: ports/127255
Submitted by: Yasuhiro KIMURA <yasu at utahime dot org>
Reviewed by: glarkin
Approved by: beech (mentor, implicit)
Approved by: portmgr (marcus)
Security: Incorrect addition of logcheck user to wheel group
Notes
Notes:
svn path=/head/; revision=220326
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 48 |
1 files changed, 48 insertions, 0 deletions
@@ -6,6 +6,54 @@ You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20080909: + AFFECTS: users of security/logcheck + AUTHOR: glarkin@FreeBSD.org + + logcheck now stores its configuration files in + /usr/local/etc/logcheck instead of /usr/local/etc. If you are + upgrading the port from version 1.1.1 to version 1.2.54, copy + the following files to a temporary directory, in case they are + removed during the upgrade: + + /usr/local/etc/logcheck.hacking + /usr/local/etc/logcheck.ignore + /usr/local/etc/logcheck.violations + /usr/local/etc/logcheck.violations.ignore + + e.g.: + cd /usr/local/etc + mkdir /tmp/logcheck.saveconf + cp logcheck.hacking logcheck.ignore logcheck.violations* \ + /tmp/logcheck.saveconf + + After the upgrade, integrate your local changes to the files listed + above into the new configuration files found in the following + directories: + + /usr/local/etc/logcheck/cracking.d + /usr/local/etc/logcheck/ignore.d.paranoid + /usr/local/etc/logcheck/ignore.d.server + /usr/local/etc/logcheck/ignore.d.workstation + /usr/local/etc/logcheck/violations.d + /usr/local/etc/logcheck/violations.ignore.d + + Please consult the following files for more information about + logcheck rules and reporting levels: + + /usr/local/share/doc/logcheck/README.logcheck + /usr/local/share/doc/logcheck/README.logcheck-database + + Also note that the upgraded port installs a crontab file for user + "logcheck" that executes the logcheck script every hour and emails + the results to root. If the installation process cannot install + the crontab file, it can be installed manually from: + + /usr/local/share/examples/logcheck/crontab.in + + e.g.: + crontab -u logcheck /usr/local/share/examples/logcheck/crontab.in + 20080907: AFFECTS: users of www/mediawiki AUTHOR: miwi@FreeBSD.org |