Your message dated Thu, 25 May 2006 02:47:21 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#322769: fixed in sysklogd 1.4.1-18 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)
--- Begin Message ---Package: sysklogd Version: 1.4.1-14 Severity: minor Tags: patch The debian-scripts contains several uses of XSI:isms (`-a' and `-o'), something that violates policy section 10.4. The included patch fixes this. Regards: David Weinehall diff -ur sysklogd-1.4.1-old/debian/postinst sysklogd-1.4.1/debian/postinst --- sysklogd-1.4.1-old/debian/postinst 2004-06-11 18:41:38.000000000 +0300 +++ sysklogd-1.4.1/debian/postinst 2004-06-11 18:30:11.000000000 +0300 @@ -77,7 +77,7 @@ # Maintain transition to FHS if [ "$1" = "configure" ] then - if [ -d /usr/doc -a ! -e /usr/doc/sysklogd -a -d /usr/share/doc/sysklogd ] + if [ -d /usr/doc ] && [ ! -e /usr/doc/sysklogd ] && [ -d /usr/share/doc/sysklogd ] then ln -sf ../share/doc/sysklogd /usr/doc/sysklogd fi diff -ur sysklogd-1.4.1-old/debian/postinst.klogd sysklogd-1.4.1/debian/postinst.klogd --- sysklogd-1.4.1-old/debian/postinst.klogd 2004-06-11 18:41:38.000000000 +0300 +++ sysklogd-1.4.1/debian/postinst.klogd 2004-06-11 18:30:49.000000000 +0300 @@ -30,7 +30,7 @@ # Maintain transition to FHS if [ "$1" = "configure" ] then - if [ -d /usr/doc -a ! -e /usr/doc/klogd -a -d /usr/share/doc/klogd ] + if [ -d /usr/doc ] && [ ! -e /usr/doc/klogd ] && [ -d /usr/share/doc/klogd ] then ln -sf ../share/doc/klogd /usr/doc/klogd fi diff -ur sysklogd-1.4.1-old/debian/preinst sysklogd-1.4.1/debian/preinst --- sysklogd-1.4.1-old/debian/preinst 2004-06-11 18:41:38.000000000 +0300 +++ sysklogd-1.4.1/debian/preinst 2004-06-11 18:31:34.000000000 +0300 @@ -4,7 +4,7 @@ dpkg --assert-support-predepends -if [ "$1" = "upgrade" -a -f /etc/init.d/sysklogd ]; then +if [ "$1" = "upgrade" ] && [ -f /etc/init.d/sysklogd ]; then if [ -f /etc/init.d/sysklogd ] then set +e diff -ur sysklogd-1.4.1-old/debian/preinst.klogd sysklogd-1.4.1/debian/preinst.klogd --- sysklogd-1.4.1-old/debian/preinst.klogd 2004-06-11 18:41:38.000000000 +0300 +++ sysklogd-1.4.1/debian/preinst.klogd 2004-06-11 18:32:14.000000000 +0300 @@ -4,7 +4,7 @@ dpkg --assert-support-predepends -if [ "$1" = "upgrade" -a -f /etc/init.d/klogd ]; then +if [ "$1" = "upgrade" ] && [ -f /etc/init.d/klogd ]; then if [ -f /etc/init.d/klogd ] then set +e diff -ur sysklogd-1.4.1-old/debian/prerm sysklogd-1.4.1/debian/prerm --- sysklogd-1.4.1-old/debian/prerm 2004-06-11 18:41:38.000000000 +0300 +++ sysklogd-1.4.1/debian/prerm 2004-06-21 23:00:01.000000000 +0300 @@ -2,12 +2,12 @@ set -e -if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/sysklogd ] +if ( [ "$1" = "upgrade" ] || [ "$1" = "remove" ] ) && [ -L /usr/doc/sysklogd ] then rm -f /usr/doc/sysklogd fi -if [ "$1" = "purge" -o "$1" = "remove" ] +if [ "$1" = "purge" ] || [ "$1" = "remove" ] then if [ -x /usr/sbin/invoke-rc.d ] then diff -ur sysklogd-1.4.1-old/debian/prerm.klogd sysklogd-1.4.1/debian/prerm.klogd --- sysklogd-1.4.1-old/debian/prerm.klogd 2004-06-11 18:41:38.000000000 +0300 +++ sysklogd-1.4.1/debian/prerm.klogd 2004-06-21 23:00:48.000000000 +0300 @@ -2,12 +2,12 @@ set -e -if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/klogd ] +if ( [ "$1" = "upgrade" ] || [ "$1" = "remove" ] ) && [ -L /usr/doc/klogd ] then rm -f /usr/doc/klogd fi -if [ "$1" = "purge" -o "$1" = "remove" ] +if [ "$1" = "purge" ] || [ "$1" = "remove" ] then if [ -x /usr/sbin/invoke-rc.d ] then diff -ur sysklogd-1.4.1-old/debian/rules sysklogd-1.4.1/debian/rules --- sysklogd-1.4.1-old/debian/rules 2004-06-11 18:41:38.000000000 +0300 +++ sysklogd-1.4.1/debian/rules 2004-06-21 22:56:57.000000000 +0300 @@ -149,9 +149,9 @@ @echo >&2 'source and diff are obsolete - use dpkg-source -b' or dsc; false dsc: - -test -d debian/tmp.sysklogd -o -d debian/tmp.klogd \ + - ( test -d debian/tmp.sysklogd || test -d debian/tmp.klogd ) \ && $(MAKE) -f debian/rules clean - if [ ! -f ../$(source)_$(version).orig.tar.gz -a -f ../orig/$(source)_$(version).orig.tar.gz ]; \ + if [ ! -f ../$(source)_$(version).orig.tar.gz ] && [ -f ../orig/$(source)_$(version).orig.tar.gz ]; \ then \ ln -s orig/$(source)_$(version).orig.tar.gz ../$(source)_$(version).orig.tar.gz; \ touch /tmp/stamp-$(source)-link; \
--- End Message ---
--- Begin Message ---Source: sysklogd Source-Version: 1.4.1-18 We believe that the bug you reported is fixed in the latest version of sysklogd, which is due to be installed in the Debian FTP archive: klogd_1.4.1-18_i386.deb to pool/main/s/sysklogd/klogd_1.4.1-18_i386.deb sysklogd_1.4.1-18.diff.gz to pool/main/s/sysklogd/sysklogd_1.4.1-18.diff.gz sysklogd_1.4.1-18.dsc to pool/main/s/sysklogd/sysklogd_1.4.1-18.dsc sysklogd_1.4.1-18_i386.deb to pool/main/s/sysklogd/sysklogd_1.4.1-18_i386.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 [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Martin Schulze <[EMAIL PROTECTED]> (supplier of updated sysklogd 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 [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Thu, 25 May 2006 11:07:52 +0200 Source: sysklogd Binary: sysklogd klogd Architecture: source i386 Version: 1.4.1-18 Distribution: unstable Urgency: medium Maintainer: Martin Schulze <[EMAIL PROTECTED]> Changed-By: Martin Schulze <[EMAIL PROTECTED]> Description: klogd - Kernel Logging Daemon sysklogd - System Logging Daemon Closes: 98631 127579 154805 164153 225895 241350 255590 266985 284914 320119 322769 337712 347333 350764 Changes: sysklogd (1.4.1-18) unstable; urgency=medium . * Removed asm/atomic.h since it is not needed anymore. (closes: Bug#350764) * Fixed typo in NMU-Disclaimer (closes: Bug#225895) * Corrected getconf call in debian/rules to fix lagefile support (closes: Bug#320119) * Applied patch by Joey Hess to prevent klogd to be stopped/started too fast (closes: Bug#284914) * Finish /usr/share/doc transition with patch by Julien Cristau (closes: Bug#337712, Bug#322769, Bug#255590) * Reset the 'restart' flag immediately after entering the restart code. Thanks to Dean Gaudet (closes: Bug#154805) * Added support for /etc/default/{syslogd,klogd} files to contain commandline arguments for syslogd and klogd (closes: Bug#98631, Bug#127579, Bug#241350, Bug#266985) * Added a description of system log level and link to sysctl(8) (closes: Bug#164153) * Acknowledging Joey's NMUs (closes: Bug#347333) Files: 01aaa7e2e4af25e1ac7633f27b49173f 539 admin important sysklogd_1.4.1-18.dsc 079d5fd0973fc760c13a2b78a62cb422 25901 admin important sysklogd_1.4.1-18.diff.gz 23c7049b894d5f4cf84e6076317eabfd 58096 admin important sysklogd_1.4.1-18_i386.deb bdceb4e32f8122f5f75c3147afdfffc9 39414 admin important klogd_1.4.1-18_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQFEdXtUW5ql+IAeqTIRAq3UAJ9X6R8YVAaoay4nvGpnEPTLtFYATgCfUq9+ XWqMumxdUJVpnhOTaL8cvJM= =wx77 -----END PGP SIGNATURE-----
--- End Message ---

