Your message dated Mon, 18 Jul 2005 16:17:21 -0400 with message-id <[EMAIL PROTECTED]> and subject line Bug#317356: 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; 7 Jul 2005 20:41:22 +0000 >From [EMAIL PROTECTED] Thu Jul 07 13:41:22 2005 Return-path: <[EMAIL PROTECTED]> Received: from burner.apl.washington.edu [128.208.78.8] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1DqdBS-00049M-00; Thu, 07 Jul 2005 13:41:22 -0700 Received: by burner.apl.washington.edu (Postfix, from userid 0) id 87C8E2806F; Thu, 7 Jul 2005 13:41:41 -0700 (PDT) Content-Type: multipart/mixed; boundary="===============1955641284==" MIME-Version: 1.0 From: banerian <[EMAIL PROTECTED]> To: Debian Bug Tracking System <[EMAIL PROTECTED]> Subject: backupninja: backup handler to burn cd or dvd backups X-Mailer: reportbug 3.8 Date: Thu, 07 Jul 2005 13:41:41 -0700 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. --===============1955641284== 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 handler for backing up to cd/dvd, and an example config file. use of this handler would require packages: mkisofs cdrecord dvd+rw-tools -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.10-no-grsec Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages backupninja depends on: ii mawk 1.3.3-11 a pattern scanning and text proces -- no debconf information --===============1955641284== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="makecd" # # burncd handler script for backupninja # getconf backupdir /var/backups/makecd getconf exclude getconf target getconf burnertype cd getconf system no getconf isoonly yes getconf imagefile backup.iso getconf device # define needed executables: MKISOFS="/usr/bin/mkisofs" GROWISOFS="/usr/bin/growisofs" #CDRECORD="/usr/bin/cdrecord" CDRECORD="/usr/bin/cdrecord.mmap" CDRDAO="/usr/bin/cdrdao" DVDINFO="/usr/bin/dvd+rw-mediainfo" # create backup dirs and check existence of progs. [ -d $backupdir ] || mkdir -p $backupdir [ -d $backupdir ] || fatal "Backup directory '$backupdir'" [ -e "$target" ] || fatal "target does not exist " [ -x "$MKISOFS" ] || debug 3 "echo executable mkisofs not present" [ -x "$GROWISOFS" ] || debug 3 "echo executable growisofs not present" [ -x "$CDRECORD" ] || debug 3 "echo executable cdrecord not present" [ -x "$CDRDAO" ] || debug 3 "echo executable cdrdao not present" if [ "$isoonly" == "no" ]; then [ -e $device ] || fatal "No Burner device available" fi outputfile="$backupdir/$imagefile" execstr="$MKISOFS --quiet -R -o $outputfile " str="" # excludes for i in $exclude; do str=" -x ${i}$str" done debug 0 "echo $str " execstr="${execstr} $str $target " debug 0 "echo $execstr " output=` $execstr 2>&1 ` code=$? if [ "$code" == "0" ]; then debug $output info "Successfully finished creation of iso" else warning $output warning "Failed to create iso" fi if [ "$isoonly" == "no" ]; then if [ "$burnertype" == "cd" ]; then # burning iso to CD $CDRECORD -v gracetime=2 dev=$device speed=8 -dao -data $outputfile code=$? if [ "$code" == "0" ]; then debug $output info "Successfully burned CD" else warning $output warning "Failed to create CD" fi fi if [ "$burnertype" == "dvd" ]; then # burning iso dvd $GROWISOFS -speed=2 -Z $device=$outputfile -use-the-force-luke=notray -use-the-force-luke=tty code=$? if [ "$code" == "0" ]; then debug $output info "Successfully burned DVD" else warning $output warning "Failed to create DVD" fi fi fi return 0 --===============1955641284== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="example.makecd" # TYP is cd or dvd AS WELL AS the disk inside!! burnertype = cd # system (yes) or directory/files (no) # this function not yet implemented #system = yes # location for image file backupdir = /var/backups/makecd # image filename imagefile = example.iso # iso or burn to cd/dvd? isoonly = no # cd/dvd burner device device=/dev/hdc # base directory to include in the backup target = / # files or directories to be excluded exclude = /proc exclude = /lost+found exclude = /tmp # backupninja will perfrom this at gvien date/time when = wednesday at 02:00 --===============1955641284==-- --------------------------------------- Received: (at 317356-close) by bugs.debian.org; 18 Jul 2005 20:23:59 +0000 >From [EMAIL PROTECTED] Mon Jul 18 13:23:59 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 1Duc9f-0002wB-00; Mon, 18 Jul 2005 13:23:59 -0700 Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian)) id 1Duc3F-0004Sq-00; Mon, 18 Jul 2005 16:17:21 -0400 From: Micah Anderson <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#317356: 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: 3 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]