Your message dated Tue, 01 Feb 2011 19:32:07 +0000
with message-id <e1pklxp-0006ph...@franck.debian.org>
and subject line Bug#608791: fixed in syslog-ng 3.1.3-3
has caused the Debian Bug report #608791,
regarding syslog-ng: dir_group not effective
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
608791: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608791
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: syslog-ng
Version: 3.1.3-1
Severity: normal
Syslog-ng is not respecting the global dir_group option and is creating dirs
with root as the group owner instead of adm.
Syslog-ng.conf attached.
-- System Information:
Debian Release: squeeze/sid
APT prefers testing
APT policy: (650, 'testing'), (600, 'unstable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash
Versions of packages syslog-ng depends on:
ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib
ii libcap2 1:2.19-3 support for getting/setting POSIX.
ii libdbi0 0.8.2-3 Database Independent Abstraction L
ii libevtlog0 0.2.8~1-2 Syslog event logger library
ii libglib2.0-0 2.24.2-1 The GLib library of C routines
ii libnet1 1.1.4-2 library for the construction and h
ii libpcre3 8.02-1.1 Perl 5 Compatible Regular Expressi
ii libssl0.9.8 0.9.8o-3 SSL shared libraries
ii libwrap0 7.6.q-19 Wietse Venema's TCP wrappers libra
ii lsb-base 3.2-23.1 Linux Standard Base 3.2 init scrip
ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime
Versions of packages syslog-ng recommends:
ii logrotate 3.7.8-6 Log rotation utility
Versions of packages syslog-ng suggests:
pn libdbd-mysql <none> (no description available)
pn libdbd-pgsql <none> (no description available)
pn libdbd-sqlite3 <none> (no description available)
-- Configuration Files:
/etc/logcheck/ignore.d.paranoid/syslog-ng [Errno 13] Permission denied:
u'/etc/logcheck/ignore.d.paranoid/syslog-ng'
/etc/logcheck/ignore.d.server/syslog-ng [Errno 13] Permission denied:
u'/etc/logcheck/ignore.d.server/syslog-ng'
/etc/logcheck/violations.ignore.d/syslog-ng [Errno 13] Permission denied:
u'/etc/logcheck/violations.ignore.d/syslog-ng'
/etc/logrotate.d/syslog-ng [Errno 2] No such file or directory:
u'/etc/logrotate.d/syslog-ng'
/etc/syslog-ng/syslog-ng.conf changed:
@version: 3.0
options { long_hostnames(off); flush_lines(0); use_dns(no); use_fqdn(no);
create_dirs (yes);
dir_owner (root);
dir_group (adm);
dir_perm (0650);
owner (root);
group (adm);
perm (0640);
};
source s_src { unix-dgram("/dev/log"); internal(); file("/proc/kmsg"
program_override("kernel")); };
destination d_auth { file("/var/log/$YEAR.$MONTH/auth.log"); };
destination d_cron { file("/var/log/$YEAR.$MONTH/cron.log"); };
destination d_daemon { file("/var/log/$YEAR.$MONTH/daemon.log"); };
destination d_kern { file("/var/log/$YEAR.$MONTH/kern.log"); };
destination d_lpr { file("/var/log/$YEAR.$MONTH/lpr.log"); };
destination d_mail { file("/var/log/$YEAR.$MONTH/mail.log"); };
destination d_syslog { file("/var/log/$YEAR.$MONTH/syslog.log"); };
destination d_user { file("/var/log/$YEAR.$MONTH/user.log"); };
destination d_uucp { file("/var/log/$YEAR.$MONTH/uucp.log"); };
destination d_console { usertty("root"); };
destination d_xconsole { pipe("/dev/xconsole"); };
filter f_dbg { level(debug); };
filter f_info { level(info); };
filter f_notice { level(notice); };
filter f_warn { level(warn); };
filter f_err { level(err); };
filter f_crit { level(crit .. emerg); };
filter f_debug { level(debug) and not facility(auth, authpriv, news, mail); };
filter f_error { level(err .. emerg) ; };
filter f_auth { facility(auth, authpriv) and not filter(f_debug); };
filter f_cron { facility(cron) and not filter(f_debug); };
filter f_daemon { facility(daemon) and not filter(f_debug); };
filter f_kern { facility(kern) and not filter(f_debug); };
filter f_lpr { facility(lpr) and not filter(f_debug); };
filter f_local { facility(local0, local1, local3, local4, local5,
local6, local7) and not filter(f_debug); };
filter f_mail { facility(mail) and not filter(f_debug); };
filter f_news { facility(news) and not filter(f_debug); };
filter f_syslog3 { facility(syslog) and not filter(f_debug); };
filter f_user { facility(user) and not filter(f_debug); };
filter f_uucp { facility(uucp) and not filter(f_debug); };
filter f_cnews { level(notice, err, crit) and facility(news); };
filter f_cother { level(debug, info, notice, warn) or facility(daemon, mail); };
filter f_ppp { facility(local2) and not filter(f_debug); };
filter f_console { level(warn .. emerg); };
log { source(s_src); filter(f_auth); destination(d_auth); };
log { source(s_src); filter(f_cron); destination(d_cron); };
log { source(s_src); filter(f_daemon); destination(d_daemon); };
log { source(s_src); filter(f_kern); destination(d_kern); };
log { source(s_src); filter(f_lpr); destination(d_lpr); };
log { source(s_src); filter(f_syslog3); destination(d_syslog); };
log { source(s_src); filter(f_user); destination(d_user); };
log { source(s_src); filter(f_uucp); destination(d_uucp); };
log { source(s_src); filter(f_mail); destination(d_mail); };
log { source(s_src); filter(f_console); destination(d_xconsole); };
log { source(s_src); filter(f_crit); destination(d_console); };
-- no debconf information
--- End Message ---
--- Begin Message ---
Source: syslog-ng
Source-Version: 3.1.3-3
We believe that the bug you reported is fixed in the latest version of
syslog-ng, which is due to be installed in the Debian FTP archive:
syslog-ng_3.1.3-3.debian.tar.gz
to main/s/syslog-ng/syslog-ng_3.1.3-3.debian.tar.gz
syslog-ng_3.1.3-3.dsc
to main/s/syslog-ng/syslog-ng_3.1.3-3.dsc
syslog-ng_3.1.3-3_amd64.deb
to main/s/syslog-ng/syslog-ng_3.1.3-3_amd64.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 608...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Laszlo Boszormenyi (GCS) <g...@debian.hu> (supplier of updated syslog-ng
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 ftpmas...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Tue, 01 Feb 2011 19:26:21 +0100
Source: syslog-ng
Binary: syslog-ng
Architecture: source amd64
Version: 3.1.3-3
Distribution: unstable
Urgency: high
Maintainer: Laszlo Boszormenyi (GCS) <g...@debian.hu>
Changed-By: Laszlo Boszormenyi (GCS) <g...@debian.hu>
Description:
syslog-ng - Next generation logging daemon
Closes: 608791
Changes:
syslog-ng (3.1.3-3) unstable; urgency=high
.
* Fix capability support for unix streams and files when dir_owner() and/or
dir_group() is used (closes: #608791). Urgency set to high to fix this
grave bug which can break logging.
Checksums-Sha1:
1854ac04edbdc9d9a29387ceb12c181149b8e6f3 1274 syslog-ng_3.1.3-3.dsc
18185c25990c69f703a1e026178f953b9a4599ec 20834 syslog-ng_3.1.3-3.debian.tar.gz
c6c0ed3f046ec4f6d2a36e933ae9596e17de4439 350048 syslog-ng_3.1.3-3_amd64.deb
Checksums-Sha256:
80aa6eddd917f74c514ec2b5dd8767d4d35e441824ef8a22f6101d0c622be40e 1274
syslog-ng_3.1.3-3.dsc
470b0ae459e99afb19083e8b03d80ce84d71b36b4f1b4d49f82e2a98e57ca5c4 20834
syslog-ng_3.1.3-3.debian.tar.gz
6b9310390fc9f1102c1c3fb09d7b514960309480ac1a0a2fb67132628f7386ec 350048
syslog-ng_3.1.3-3_amd64.deb
Files:
3fc41a29328116239b164b0d5d0e1201 1274 admin extra syslog-ng_3.1.3-3.dsc
6cae290252b7db1d37a89b7c708e3d0c 20834 admin extra
syslog-ng_3.1.3-3.debian.tar.gz
1698bc764113eb418ac4c4a26b73306f 350048 admin extra syslog-ng_3.1.3-3_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iEYEARECAAYFAk1IW9IACgkQMDatjqUaT92HhACdFp/jDk3C7DNtPAhFNirii/DK
hvkAoLC+S/bOnN7/mn6SHCHo9eB4vvTD
=O++Y
-----END PGP SIGNATURE-----
--- End Message ---