Your message dated Mon, 18 Jul 2005 16:17:21 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#310437: fixed in backupninja 0.7-1
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; 23 May 2005 15:07:54 +0000
>From [EMAIL PROTECTED] Mon May 23 08:07:54 2005
Return-path: <[EMAIL PROTECTED]>
Received: from dsl092-164-214.wdc2.dsl.speakeasy.net (localhost.localdomain)
[66.92.164.214]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DaEX3-0001tK-00; Mon, 23 May 2005 08:07:53 -0700
Received: by localhost.localdomain (Postfix, from userid 1000)
id 132D3F9D; Mon, 23 May 2005 11:07:52 -0400 (EDT)
Content-Type: multipart/mixed; boundary="===============0881510651=="
MIME-Version: 1.0
From: Charles Lepple <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: backupninja: backup handler for trac environments
X-Mailer: reportbug 3.12
Date: Mon, 23 May 2005 11:07:52 -0400
Message-Id: <[EMAIL PROTECTED]>
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
This is a multi-part MIME message sent by reportbug.
--===============0881510651==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: backupninja
Version: 0.5-3
Severity: wishlist
Tags: patch
Attached is a backup handler for trac environments. It is a modified
version of the Subversion handler, so configuration is similar.
Versions of packages backupninja depends on:
ii gawk 1:3.1.4-2 GNU awk, a pattern scanning and pr
ii mawk 1.3.3-11 a pattern scanning and text proces
-- no debconf information
--===============0881510651==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="trac"
#
# this handler will backup trac environments (based on the svn handler)
#
# http://trac.edgewall.com/
#
getconf src /var/lib/trac
getconf dest /var/backups/trac
getconf tmp /var/backups/trac.tmp
error=0
cd $src
for repo in `find . -name VERSION`
do
repo=`dirname $repo`
# Just make the $tmp dir, not $tmp/$repo
ret=`mkdir -p $tmp 2>&1`
code=$?
if [ "$ret" ]; then
debug "$ret"
fi
if [ $code != 0 ]; then
error "command failed mkdir -p $tmp"
fi
ret=`trac-admin $src/$repo hotcopy $tmp/$repo 2>&1`
code=$?
if [ "$ret" ]; then
debug "$ret"
fi
if [ $code != 0 ]; then
error "command failed -- trac-admin $src/$repo hotcopy $tmp/$repo"
error=1
fi
done
if [ $error -eq 1 ]; then
echo "Error: because of earlier errors, we are leaving trac backups in $tmp
instead of $dest"
else
if [ -d $dest -a -d $tmp ]; then
rm -rf $dest
fi
if [ -d $tmp ]; then
mv $tmp $dest
fi
fi
exit 0
# vim: filetype=sh
--===============0881510651==--
---------------------------------------
Received: (at 310437-close) by bugs.debian.org; 18 Jul 2005 20:24:29 +0000
>From [EMAIL PROTECTED] Mon Jul 18 13:24:28 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DucA8-0003AY-00; Mon, 18 Jul 2005 13:24:28 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Duc3F-0004So-00; Mon, 18 Jul 2005 16:17:21 -0400
From: Micah Anderson <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#310437: fixed in backupninja 0.7-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 18 Jul 2005 16:17:21 -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-Level:
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-CrossAssassin-Score: 2
Source: backupninja
Source-Version: 0.7-1
We believe that the bug you reported is fixed in the latest version of
backupninja, which is due to be installed in the Debian FTP archive:
backupninja_0.7-1.diff.gz
to pool/main/b/backupninja/backupninja_0.7-1.diff.gz
backupninja_0.7-1.dsc
to pool/main/b/backupninja/backupninja_0.7-1.dsc
backupninja_0.7-1_all.deb
to pool/main/b/backupninja/backupninja_0.7-1_all.deb
backupninja_0.7.orig.tar.gz
to pool/main/b/backupninja/backupninja_0.7.orig.tar.gz
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.
Micah Anderson <[EMAIL PROTECTED]> (supplier of updated backupninja 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: Fri, 3 Jun 2005 17:34:48 -0500
Source: backupninja
Binary: backupninja
Architecture: source all
Version: 0.7-1
Distribution: unstable
Urgency: low
Maintainer: Micah Anderson <[EMAIL PROTECTED]>
Changed-By: Micah Anderson <[EMAIL PROTECTED]>
Description:
backupninja - lightweight, extensible meta-backup system
Closes: 305870 310437 317356
Changes:
backupninja (0.7-1) unstable; urgency=low
.
* New upstream release:
. vserver support added to handlers
. handlers can now be disabled by changing their name to have .disabled
. duplicity handler improved
. trac handler added (Closes: #310437)
. makecd DVD/CD burner handler added (Closes: #317356)
. mysql handler updated
. ninjahelper curses 'wizard' added to aid in setting up configs
. logfile output improved
. configfile option added to mysql handler (Closes: #305870)
* Added makecd, duplicity and svn handler to examples
* Added suggests on mkisofs, cdrecord, dvd+rw-tools for makecd handler
* Updated Standards-Version to 3.6.2
* Added dialog to debian/control Depends for ninjahelper
Files:
54b1852c7d53b8b9a6e55bfa375556a9 570 admin optional backupninja_0.7-1.dsc
52bc254bc0412113036a060255dc6c70 76029 admin optional
backupninja_0.7.orig.tar.gz
d56d7246ac191c7b01873198a82c3218 7922 admin optional backupninja_0.7-1.diff.gz
8a78c9145b7ceb18823a0315baee3aac 44168 admin optional backupninja_0.7-1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFC3Anr9n4qXRzy1ioRAjm0AKCZeXvjAE+3+FA98OGkgRSQzEGZvwCfbLjF
WtoNn7RBAVMaZEJ4TRszYT4=
=RX+h
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]