Your message dated Sat, 11 Jun 2005 13:32:07 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#312726: fixed in sysstat 6.0.0-2
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; 9 Jun 2005 21:05:08 +0000
>From [EMAIL PROTECTED] Thu Jun 09 14:05:08 2005
Return-path: <[EMAIL PROTECTED]>
Received: from 203-173-59-79.dyn.iinet.net.au (lamech.gear.dyndns.org) 
[203.173.59.79] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DgUD6-0005hk-00; Thu, 09 Jun 2005 14:05:08 -0700
Received: from localhost (localhost.localdomain [127.0.0.1])
        by lamech.gear.dyndns.org (Postfix) with ESMTP id 01E0E40C01
        for <[EMAIL PROTECTED]>; Fri, 10 Jun 2005 07:05:06 +1000 (EST)
Received: from lamech.gear.dyndns.org ([127.0.0.1])
        by localhost (lamech [127.0.0.1]) (amavisd-new, port 10024)
        with ESMTP id 17233-19 for <[EMAIL PROTECTED]>;
        Fri, 10 Jun 2005 07:05:00 +1000 (EST)
Received: from [10.199.1.7] (enoch.gear.dyndns.org [10.199.1.7])
        by lamech.gear.dyndns.org (Postfix) with ESMTP id B14E840B68
        for <[EMAIL PROTECTED]>; Fri, 10 Jun 2005 07:05:00 +1000 (EST)
Message-ID: <[EMAIL PROTECTED]>
Date: Fri, 10 Jun 2005 07:04:56 +1000
From: Paul Gear <[EMAIL PROTECTED]>
User-Agent: Debian Thunderbird 1.0.2 (X11/20050331)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: [EMAIL PROTECTED]
Subject: Number of days to keep sysstat performance logs is not configurable
X-Enigmail-Version: 0.91.0.0
Content-Type: multipart/signed; micalg=pgp-sha1;
 protocol="application/pgp-signature";
 boundary="------------enig252272DF5A272E41221F0B43"
X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at gear.dyndns.org
Delivered-To: [EMAIL PROTECTED]
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=-3.0 required=4.0 tests=BAYES_00 autolearn=no 
        version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

This is an OpenPGP/MIME signed message (RFC 2440 and 3156)
--------------enig252272DF5A272E41221F0B43
Content-Type: multipart/mixed;
 boundary="------------030806090805050104010402"

This is a multi-part message in MIME format.
--------------030806090805050104010402
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

Package: sysstat
Version: 5.0.6-5

Sysstat enforces a 7-day limit on the time for which performance data is
kept.  On production systems a longer period is desirable.  The attached
patches (to /etc/default/sysstat and /usr/lib/sysstat/sa2, respectively)
implement this functionality.

-- 
Paul
<http://paulgear.webhop.net>

--------------030806090805050104010402
Content-Type: text/x-patch;
 name="sysstat.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="sysstat.patch"

--- sysstat     2005/06/09 20:30:33     1.2
+++ sysstat     2005/06/09 20:57:05
@@ -1,5 +1,6 @@
 #
-# Default settings for /etc/init.d/sysstat and /etc/cron.d/sysstat
+# Default settings for /etc/init.d/sysstat, /etc/cron.d/sysstat, and
+# /usr/lib/sysstat/sa2
 #
 
 # Should sadc collect system activity informations? Valid values
@@ -10,3 +11,10 @@
 # Options passed to sadc in the /etc/init.d/sysstat script.
 # See sadc(8) for more information
 OPTIONS="-F -L -"
+
+# The number of days for which to keep sysstat performance logs.  If set to
+# less than 1, no performance logs will be removed, and files will be
+# overwritten on the like-numbered day of the next month.  Setting this
+# greater than 31 will have no effect (unless sysstat has not been running
+# for some reason).  If not set, defaults to 7 days.
+#KEEP_DAYS=0

--------------030806090805050104010402
Content-Type: text/x-patch;
 name="sa2.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="sa2.patch"

--- sa2 2005/06/09 20:29:46     1.2
+++ sa2 2005/06/09 20:54:39
@@ -5,11 +5,14 @@
 S_TIME_FORMAT=ISO ; export S_TIME_FORMAT
 umask 0022
 DATE=`date  +%d`
+KEEP_DAYS=7
+[ -f /etc/default/sysstat ] && . /etc/default/sysstat
 RPT=/var/log/sysstat/sar${DATE}
 ENDIR=/usr/bin
 DFILE=/var/log/sysstat/sa${DATE}
 [ -f "$DFILE" ] || exit 0
 cd ${ENDIR}
 ${ENDIR}/sar.sysstat $* -f ${DFILE} > ${RPT}
-find /var/log/sysstat \( -name 'sar??' -o -name 'sa??' \) -mtime +7 -exec rm 
-f {} \;
-
+if [ "${KEEP_DAYS}" -gt 0 ]; then
+       find /var/log/sysstat \( -name 'sar??' -o -name 'sa??' \) -mtime 
+${KEEP_DAYS} -exec rm -f {} \;
+fi

--------------030806090805050104010402--

--------------enig252272DF5A272E41221F0B43
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: OpenPGP digital signature
Content-Disposition: attachment; filename="signature.asc"

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCqK78Y1u5R057COQRAkBvAJ9pJO1MhUBJ20mrteKMIvdGMBnpCgCePyOG
RdYSuaGoRBvEBjQM7SgJLSE=
=klFW
-----END PGP SIGNATURE-----

--------------enig252272DF5A272E41221F0B43--

---------------------------------------
Received: (at 312726-close) by bugs.debian.org; 11 Jun 2005 17:39:24 +0000
>From [EMAIL PROTECTED] Sat Jun 11 10:39:24 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1Dh9x5-00012V-00; Sat, 11 Jun 2005 10:39:23 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1Dh9q3-0006yn-00; Sat, 11 Jun 2005 13:32:07 -0400
From: Robert Luberda <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#312726: fixed in sysstat 6.0.0-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 11 Jun 2005 13:32:07 -0400
Delivered-To: [EMAIL PROTECTED]
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: 3

Source: sysstat
Source-Version: 6.0.0-2

We believe that the bug you reported is fixed in the latest version of
sysstat, which is due to be installed in the Debian FTP archive:

isag_6.0.0-2_all.deb
  to pool/main/s/sysstat/isag_6.0.0-2_all.deb
sysstat_6.0.0-2.diff.gz
  to pool/main/s/sysstat/sysstat_6.0.0-2.diff.gz
sysstat_6.0.0-2.dsc
  to pool/main/s/sysstat/sysstat_6.0.0-2.dsc
sysstat_6.0.0-2_i386.deb
  to pool/main/s/sysstat/sysstat_6.0.0-2_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.
Robert Luberda <[EMAIL PROTECTED]> (supplier of updated sysstat 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: Sat, 11 Jun 2005 19:15:30 +0200
Source: sysstat
Binary: isag sysstat
Architecture: source i386 all
Version: 6.0.0-2
Distribution: unstable
Urgency: low
Maintainer: Robert Luberda <[EMAIL PROTECTED]>
Changed-By: Robert Luberda <[EMAIL PROTECTED]>
Description: 
 isag       - Interactive System Activity Grapher for sysstat
 sysstat    - sar, iostat and mpstat - system performance tools for Linux
Closes: 265130 288582 312726
Changes: 
 sysstat (6.0.0-2) unstable; urgency=low
 .
   * Upload to unstable:
     + Number of days to keep log files in configurable since version 5.1.2
       (closes: #312726).
 .
 sysstat (6.0.0-1) experimental; urgency=low
 .
   * New upstream version (stable).
 .
 sysstat (5.1.5-1) experimental; urgency=low
 .
   * New upstream version (development).
   * Include sysstat.dtd in the documentation directory (for XML generated by
     sadf -x).
 .
 sysstat (5.1.4-2) experimental; urgency=low
 .
   * Merge changes from 5.0.6-4 and 5.0.6-5.
 .
 sysstat (5.1.4-1) experimental; urgency=low
 .
   * New upstream version (development).
   * sar.c: Fix FTBFS on amd64 with gcc-4.0 (closes: #288582).
 .
 sysstat (5.1.3-2) experimental; urgency=low
 .
   * Merge changes from 5.0.6-3.
 .
 sysstat (5.1.3-1) experimental; urgency=low
 .
   * New upstream version (development).
   * Install newly added sysstat.ioconfig file  in /etc/sysstat, not
     in RedHat-ish /etc/sysconfig.
   * With the above mentioned file installed, the iostat command display
     abbreviated device names (closes: #265130).
   * Move HISTORY settings from /etc/default/sysstat to /etc/sysstat/config.
   * Merge changes from 5.0.6-2.
 .
 sysstat (5.1.2-1) experimental; urgency=low
 .
   * New upstream version (development).
   * sa2.sh: use /etc/default/sysstat instead of RedHat-ish
     /etc/syssconfig/default for HISTORY config.
   * systat.postinst: handle update of default file.
 .
 sysstat (5.1.1-1) experimental; urgency=low
 .
   * New upstream version (development):
     + daily data files format has changed again.
     + new tool: sadf
   * Updated systat package description.
Files: 
 7e31637a7b0c7778f87e995eaf2de260 616 admin optional sysstat_6.0.0-2.dsc
 b5e37325ad2bb0ca0314a1720f6dcc02 20613 admin optional sysstat_6.0.0-2.diff.gz
 28ddc30e3eaed2c1b5c4321f4829cbe0 21234 admin optional isag_6.0.0-2_all.deb
 17b68d4dbe37a5589f34f15cc48bc139 147270 admin optional sysstat_6.0.0-2_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFCqxzVThh1cJ0wnDsRApApAKCMQnlDFpb940uIdTtRyI52CODHKQCfRbZ0
EVr9q1iLgvyK3Wl1TpG45OE=
=sGcH
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to