Jose Calhariz
2005-Jan-08 00:40 UTC
[Logcheck-devel] Bug#289246: logcheck-database: Rules for dhcp don't work with vlan names like eth0.3
Package: logcheck-database Version: 1.2.32 Severity: normal Tags: patch When using vlans and dhcp, if is used the convention of naming vlans like eth0.3 or eth0.03, then filters don't work, because it expect that the interface name don't have a dot. Follow some rules that need to be added to work with vlans. ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): (BOOTREQUEST|DHCPDISCOVER) from [:[:alnum:]]+ (\([:._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): BOOTREPLY for [.0-9]+ to [:[:alnum:]]+ (\([:._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPOFFER on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPREQUEST for [.0-9]+ (\([.0-9]+\) |)from [:._[:alnum:]-]+ (\([[:alnum:]]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPACK on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ #Added for dhcp 3 ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPDISCOVER from [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+(: load balance to peer [._[:alnum:]-]+)?$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPOFFER on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPREQUEST for [.0-9]+ (\([.0-9]+\) |)from [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+(: load balance to peer [._[:alnum:]-]+|: lease owned by peer)?$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPACK on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPINFORM from [.0-9]+ via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPRELEASE of [.0-9]+ from [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+ \((not |)found\)$ -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.8-1-686-smp Locale: LANG=C, LC_CTYPE=pt_PT at euro (charmap=ISO-8859-15) Versions of packages logcheck-database depends on: ii debconf [debconf-2.0] 1.4.30.11 Debian configuration management sy -- debconf information: logcheck-database/conffile-cleanup: false logcheck-database/rules-directories-note: logcheck-database/standard-rename-note:
maximilian attems
2005-Jan-08 01:03 UTC
Bug#289246: [Logcheck-devel] Bug#289246: logcheck-database: Rules for dhcp don't work with vlan names like eth0.3
On Sat, 08 Jan 2005, Jose Calhariz wrote:> When using vlans and dhcp, if is used the convention of naming vlans > like eth0.3 or eth0.03, then filters don't work, because it expect > that the interface name don't have a dot. > > Follow some rules that need to be added to work with vlans. > > ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): (BOOTREQUEST|DHCPDISCOVER) from [:[:alnum:]]+ (\([:._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$.. please don't break current rules, you didn't supply any log messages but from what i read from your intro s/[[:alnum:]]+.[[:alnum:]]+/[.[:alnum:]]+/g at the end of your rules should help. please test that and report also some loglines one can poke on. thanks maks
maximilian attems
2005-Jan-08 01:34 UTC
Bug#289246: [Logcheck-devel] Bug#289246: logcheck-database: Rules for dhcp don't work with vlan names like eth0.3
On Sat, 08 Jan 2005, Jose Calhariz wrote:> Jan 7 23:30:08 mariana dhcpd: DHCPDISCOVER from 00:30:05:15:92:e3 via eth0.0015that was what i thought, the current logcheck rules can easily fixed to match your case, no we don't add gratiously rules. ;-) just use rules like this: ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): (BOOTREQUEST|DHCPDISCOVER) from [:[:alnum:]]+ (\([:._[:alnum:]-]+\) |)via [.[:alnum:]] -- maks ps please cc bug report!
maximilian attems
2005-Jan-08 01:39 UTC
Bug#289246: [Logcheck-devel] Bug#289246: logcheck-database: Rules for dhcp don't work with vlan names like eth0.3
On Sat, 08 Jan 2005, Jose Calhariz wrote:> On Sat, Jan 08, 2005 at 02:03:32AM +0100, maximilian attems wrote: > > On Sat, 08 Jan 2005, Jose Calhariz wrote: > > > > > When using vlans and dhcp, if is used the convention of naming vlans > > > like eth0.3 or eth0.03, then filters don't work, because it expect > > > that the interface name don't have a dot. > > > > > > Follow some rules that need to be added to work with vlans. > > > > > > ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): (BOOTREQUEST|DHCPDISCOVER) from [:[:alnum:]]+ (\([:._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ > > .. > > please don't break current rules, you didn't supply any log messages > > but from what i read from your intro > > s/[[:alnum:]]+.[[:alnum:]]+/[.[:alnum:]]+/g at the end of your rules > > should help. > > please test that and report also some loglines one can poke on. > > This is one example of the rules I want to skip. > > Jan 7 23:30:08 mariana dhcpd: DHCPDISCOVER from 00:30:05:15:92:e3 via eth0.0015 > Jan 7 23:30:08 mariana dhcpd: DHCPOFFER on 172.20.15.71 to 00:30:05:15:92:e3 via eth0.0015 > Jan 7 23:30:10 mariana dhcpd: DHCPREQUEST for 172.20.15.71 (172.20.15.251) from 00:30:05:15:92:e3 via eth0.0015 > Jan 7 23:30:10 mariana dhcpd: DHCPACK on 172.20.15.71 to 00:30:05:15:92:e3 via eth0.0015 > Jan 7 23:57:06 mariana dhcpd: DHCPREQUEST for 172.20.65.99 from 00:30:05:12:43:7f via eth0.0065 > Jan 7 23:57:06 mariana dhcpd: DHCPACK on 172.20.65.99 to 00:30:05:12:43:7f (OPET2) via eth0.0065 > Jan 7 23:57:12 mariana dhcpd: DHCPINFORM from 172.20.29.104 via eth0.0029 > Jan 7 23:57:16 mariana dhcpd: DHCPINFORM from 172.20.29.104 via eth0.0029 > Jan 7 23:58:22 mariana dhcpd: DHCPREQUEST for 172.20.46.200 from 00:00:e8:70:d0:48 via eth0.0046 > Jan 7 23:58:22 mariana dhcpd: DHCPACK on 172.20.46.200 to 00:00:e8:70:d0:48 via eth0.0046 > Jan 8 00:05:23 mariana dhcpd: DHCPINFORM from 172.20.81.144 via eth0.0081 > Jan 8 00:05:26 mariana dhcpd: DHCPINFORM from 172.20.81.144 via eth0.0081 > Jan 8 00:07:37 mariana dhcpd: DHCPREQUEST for 172.20.29.212 from 00:03:93:70:63:3c via eth0.0029 > Jan 8 00:07:37 mariana dhcpd: DHCPACK on 172.20.29.212 to 00:03:93:70:63:3c via eth0.0029 > Jan 8 00:52:03 mariana dhcpd: DHCPREQUEST for 172.20.29.217 from 00:03:93:91:7e:c8 via eth0.0029 > Jan 8 00:52:03 mariana dhcpd: DHCPACK on 172.20.29.217 to 00:03:93:91:7e:c8 via eth0.0029 > Jan 8 00:58:23 mariana dhcpd: DHCPREQUEST for 172.20.29.211 from 00:03:93:91:8d:ea via eth0.0029 > Jan 8 00:58:23 mariana dhcpd: DHCPACK on 172.20.29.211 to 00:03:93:91:8d:ea via eth0.0029 > > The rules I have sent to you, where generated after doing > s/via [[:alnum:]]+.[[:alnum:]]+/via [.[:alnum:]]+/g on the file dhcp > to a new file. > > Why my rules can't be append to the old ones?you didn't read my previous mail ;-) anyway it would be cool if you could test attached set of rule, that i commited to current cvs. please remove before your first trial. thanks -- maks -------------- next part -------------- ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): Internet (Software|Systems) Consortium DHCP Server [._[:alnum:]-]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): Copyright [0-9-]+ Internet (Software|Systems) Consortium\.$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): All rights reserved\.$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): For info, please visit http://www.isc.org/(products/DHCP|sw/dhcp/)$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): Wrote [0-9]+ deleted host decls to leases file\.$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): Wrote [0-9]+ new dynamic host decls to leases file\.$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): Wrote [0-9]+ leases to leases file\.$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): (BOOTREQUEST|DHCPDISCOVER) from [:[:alnum:]]+ (\([:._[:alnum:]-]+\) |)via [.[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): BOOTREPLY for [.0-9]+ to [:[:alnum:]]+ (\([:._[:alnum:]-]+\) |)via [.[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPOFFER on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [.[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPREQUEST for [.0-9]+ (\([.0-9]+\) |)from [:._[:alnum:]-]+ (\([[:alnum:]]+\) |)via [.[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPACK on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [.[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPINFORM from [:[:alnum:]\.]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPNAK on [:[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPRELEASE on [.0-9]+$ #Added for dhcp 3 ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPDISCOVER from [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [.[:alnum:]]+(: load balance to peer [._[:alnum:]-]+)?$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPOFFER on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [.[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPREQUEST for [.0-9]+ (\([.0-9]+\) |)from [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [.[:alnum:]]+(: load balance to peer [._[:alnum:]-]+|: lease owned by peer)?$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPACK on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [.[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPINFORM from [.0-9]+ via [.[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPRELEASE of [.0-9]+ from [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [.[:alnum:]]+ \((not |)found\)$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPACK to [.0-9]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: pool [0-9a-f]{7} [.0-9]+/[:[:alnum:]]+ total [:[:alnum:]]+ free [:[:alnum:]]+ backup [:[:alnum:]]+ lts [:[:alnum:]-]+$ # Dyndns support ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: [Aa]dded (new )?(forward|reverse) map from [._[:alnum:]-]+ to [._[:alnum:]-]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: Can't update forward map [._[:alnum:]-]+ to [.0-9]+: no such RRset$
Debian Bug Tracking System
2005-Jan-08 10:33 UTC
[Logcheck-devel] Bug#289246: marked as done (logcheck-database: Rules for dhcp don't work with vlan names like eth0.3)
Your message dated Sat, 08 Jan 2005 05:17:05 -0500 with message-id <E1CnDeb-0004JW-00 at newraff.debian.org> and subject line Bug#289246: fixed in logcheck 1.2.33 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 8 Jan 2005 00:41:59 +0000>From jose.calhariz at tagus.ist.utl.pt Fri Jan 07 16:41:59 2005Return-path: <jose.calhariz at tagus.ist.utl.pt> Received: from ana.tagus.ist.utl.pt (mail.tagus.ist.utl.pt) [193.136.166.70] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Cn4g3-0005G4-00; Fri, 07 Jan 2005 16:41:59 -0800 Received: (qmail 4957 invoked by uid 50223); 8 Jan 2005 00:41:26 -0000 Received: from jose.calhariz at tagus.ist.utl.pt by mail.tagus.ist.utl.pt by uid 501 with qmail-scanner-1.22 (iscan: v3.1/v6.810-1005/335/72939. spamassassin: 2.55. Clear:RC:1(172.20.33.49):. Processed in 0.430713 secs); 08 Jan 2005 00:41:26 -0000 Received: from unknown (HELO mariana.tagus.ist.utl.pt) ([172.20.33.49]) (envelope-sender <jose.calhariz at tagus.ist.utl.pt>) by mail.tagus.ist.utl.pt (qmail-ldap-1.03) with RC4-SHA encrypted SMTP for <submit at bugs.debian.org>; 8 Jan 2005 00:41:25 -0000 Received: from root by mariana.tagus.ist.utl.pt with local (Exim 4.34) id 1Cn4f0-0000N0-2w; Sat, 08 Jan 2005 00:40:54 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jose Calhariz <jose.calhariz at tagus.ist.utl.pt> To: Debian Bug Tracking System <submit at bugs.debian.org> Subject: logcheck-database: Rules for dhcp don't work with vlan names like eth0.3 X-Mailer: reportbug 3.2 Date: Sat, 08 Jan 2005 00:40:54 +0000 X-Debbugs-Cc: jose.calhariz at tagus.ist.utl.pt Message-Id: <E1Cn4f0-0000N0-2w at mariana.tagus.ist.utl.pt> Delivered-To: submit at bugs.debian.org X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-11.0 required=4.0 tests=BAYES_00,HAS_PACKAGE, X_DEBBUGS_CC autolearn=ham version=2.60-bugs.debian.org_2005_01_02 X-Spam-Level: Package: logcheck-database Version: 1.2.32 Severity: normal Tags: patch When using vlans and dhcp, if is used the convention of naming vlans like eth0.3 or eth0.03, then filters don't work, because it expect that the interface name don't have a dot. Follow some rules that need to be added to work with vlans. ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): (BOOTREQUEST|DHCPDISCOVER) from [:[:alnum:]]+ (\([:._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): BOOTREPLY for [.0-9]+ to [:[:alnum:]]+ (\([:._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPOFFER on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPREQUEST for [.0-9]+ (\([.0-9]+\) |)from [:._[:alnum:]-]+ (\([[:alnum:]]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd(-2.2.x|): DHCPACK on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ #Added for dhcp 3 ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPDISCOVER from [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+(: load balance to peer [._[:alnum:]-]+)?$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPOFFER on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPREQUEST for [.0-9]+ (\([.0-9]+\) |)from [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+(: load balance to peer [._[:alnum:]-]+|: lease owned by peer)?$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPACK on [.0-9]+ to [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPINFORM from [.0-9]+ via [[:alnum:]]+.[[:alnum:]]+$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ dhcpd: DHCPRELEASE of [.0-9]+ from [:[:alnum:]]+ (\([._[:alnum:]-]+\) |)via [[:alnum:]]+.[[:alnum:]]+ \((not |)found\)$ -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.8-1-686-smp Locale: LANG=C, LC_CTYPE=pt_PT at euro (charmap=ISO-8859-15) Versions of packages logcheck-database depends on: ii debconf [debconf-2.0] 1.4.30.11 Debian configuration management sy -- debconf information: logcheck-database/conffile-cleanup: false logcheck-database/rules-directories-note: logcheck-database/standard-rename-note: --------------------------------------- Received: (at 289246-close) by bugs.debian.org; 8 Jan 2005 10:22:15 +0000>From katie at ftp-master.debian.org Sat Jan 08 02:22:15 2005Return-path: <katie at ftp-master.debian.org> Received: from newraff.debian.org [208.185.25.31] (mail) by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CnDja-0000WX-00; Sat, 08 Jan 2005 02:22:15 -0800 Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian)) id 1CnDeb-0004JW-00; Sat, 08 Jan 2005 05:17:05 -0500 From: Todd Troxell <ttroxell at debian.org> To: 289246-close at bugs.debian.org X-Katie: $Revision: 1.54 $ Subject: Bug#289246: fixed in logcheck 1.2.33 Message-Id: <E1CnDeb-0004JW-00 at newraff.debian.org> Sender: Archive Administrator <katie at ftp-master.debian.org> Date: Sat, 08 Jan 2005 05:17:05 -0500 Delivered-To: 289246-close at bugs.debian.org X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-Spam-Level: X-CrossAssassin-Score: 13 Source: logcheck Source-Version: 1.2.33 We believe that the bug you reported is fixed in the latest version of logcheck, which is due to be installed in the Debian FTP archive: logcheck-database_1.2.33_all.deb to pool/main/l/logcheck/logcheck-database_1.2.33_all.deb logcheck_1.2.33.dsc to pool/main/l/logcheck/logcheck_1.2.33.dsc logcheck_1.2.33.tar.gz to pool/main/l/logcheck/logcheck_1.2.33.tar.gz logcheck_1.2.33_all.deb to pool/main/l/logcheck/logcheck_1.2.33_all.deb logtail_1.2.33_all.deb to pool/main/l/logcheck/logtail_1.2.33_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 289246 at bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Todd Troxell <ttroxell at debian.org> (supplier of updated logcheck package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster at debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Saturday, 08 Jan 2005 04:56:00 -0500 Source: logcheck Binary: logcheck logtail logcheck-database Architecture: source all Version: 1.2.33 Distribution: unstable Urgency: low Maintainer: Debian logcheck Team <logcheck-devel at lists.alioth.debian.org> Changed-By: Todd Troxell <ttroxell at debian.org> Description: logcheck - Mails anomalies in the system logfiles to the administrator logcheck-database - A database of system log rules for the use of log checkers logtail - Print log file lines that have not been read Closes: 284505 284788 284825 285602 286230 286306 286329 286532 286747 287184 287237 288580 289246 Changes: logcheck (1.2.33) unstable; urgency=low . maks: * Enhance rules at level workstation for removable devices. (closes: #284505, #284825) * Fix dnsmasq rule regarding DHCPINFORM. (closes: #286532) * Add rbldnsd rules at level server from Rafael Jesus Alcantara Perez <rafa at dedaloingenieros.com>. (closes: #285602) * Add jabberd rules from Peter Palfrader <weasel at debian.org>. * Add rule for weekly nmbd logrotate. (closes: #286329) * Add rules from Lee Maguire <lee-debian at hexkey.co.uk> for usb headset on level workstation. (closes: #286747) * Fix dovecot rules: dots in usernames + other breakage. (closes: #286306) * Fix gconfd rules for latest default english logging style. * Logtail need to depend on versioned perl not logcheck. (closes: #288580) * Add rules for dictd, francine, kernel from alfie. * Fix dhcp rules for vlan case. (closes: #289246) todd: * Set rule directories setgid to simplify administration. (closes: #286230) * Add future package plans to TODO * Remove dh_strip and dh_shlibdeps from debian/rules * Touch cron.d/logcheck in postinst. (closes: #284788) * Conditionally set permissions in postinst on version <1.2.33 (closes: #287184) * Update dh_installlogcheck, which has already been patched in debhelper. (closes: #287237) Files: df0734db2689120d6190ce5ea8622f4b 703 admin optional logcheck_1.2.33.dsc 540f44fc39be17a3357671c4deef86c5 89502 admin optional logcheck_1.2.33.tar.gz e138301e6f638aeca6a05405429b95e4 42368 admin optional logcheck_1.2.33_all.deb d9e9073c85c61d442719988440d04f5f 57492 admin optional logcheck-database_1.2.33_all.deb 6b983373c4044d602a25dd8ccc5b21ed 25368 admin optional logtail_1.2.33_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQFB369S4u3oQ3FHP2YRAgssAKCh0ofP6ZCATqcFdqBMzwTH7MQhjgCg0VdW a1cPOUVFxEp9IN83KE8mGr4=5YoU -----END PGP SIGNATURE-----