Your message dated Wed, 20 Apr 2005 14:42:24 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#305538: backupninja doesn't sort configs in /etc/backup.d
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; 20 Apr 2005 16:19:55 +0000
>From [EMAIL PROTECTED] Wed Apr 20 09:19:55 2005
Return-path: <[EMAIL PROTECTED]>
Received: from eol.lvk.cs.msu.su [158.250.17.73]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DOHve-0005eA-00; Wed, 20 Apr 2005 09:19:54 -0700
Received: by eol.lvk.cs.msu.su (Postfix, from userid 0)
id BB0103A5; Wed, 20 Apr 2005 20:19:51 +0400 (MSD)
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Alexander Gerasiov <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: backupninja doesn't sort configs in /etc/backup.d
X-Mailer: reportbug 3.8
Date: Wed, 20 Apr 2005 20:19:50 +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:
Package: backupninja
Version: 0.4.4-1
Severity: normal
Tags: patch
>From nb's README:
The configuration files are processed in alphabetical order.
But that's not true.
Here is a stupid patch:
# diff -u `which backupninja` /tmp/bn
--- /usr/sbin/backupninja 2005-03-19 06:18:01.000000000 +0300
+++ /tmp/bn 2005-04-20 20:12:10.000000000 +0400
@@ -429,7 +429,7 @@
if [ "$singlerun" ]; then
files=$singlerun
else
- files=`find $configdirectory -mindepth 1 `
+ files=`find $configdirectory -mindepth 1 | sort`
fi
for file in $files; do
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (620, 'testing'), (600, 'unstable'), (550, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-686
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
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
---------------------------------------
Received: (at 305538-done) by bugs.debian.org; 20 Apr 2005 19:52:48 +0000
>From [EMAIL PROTECTED] Wed Apr 20 12:52:48 2005
Return-path: <[EMAIL PROTECTED]>
Received: from mail.riseup.net [69.90.134.155]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DOLFg-0000qB-00; Wed, 20 Apr 2005 12:52:48 -0700
Received: from localhost (localhost [127.0.0.1])
by mail.riseup.net (Postfix) with ESMTP id 6F7D7A2EC4;
Wed, 20 Apr 2005 12:52:44 -0700 (PDT)
Received: from mail.riseup.net ([127.0.0.1])
by localhost (buffy [127.0.0.1]) (amavisd-new, port 10024) with ESMTP
id 20970-36; Wed, 20 Apr 2005 12:52:44 -0700 (PDT)
Received: from localhost (localhost [127.0.0.1])
(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
(No client certificate requested)
by mail.riseup.net (Postfix) with ESMTP id 33F0EA2EBB;
Wed, 20 Apr 2005 12:52:44 -0700 (PDT)
Received: by pond (Postfix, from userid 1000)
id EA86E1429B; Wed, 20 Apr 2005 14:42:24 -0500 (CDT)
Date: Wed, 20 Apr 2005 14:42:24 -0500
From: Micah Anderson <[EMAIL PROTECTED]>
To: Alexander Gerasiov <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: Bug#305538: backupninja doesn't sort configs in /etc/backup.d
Message-ID: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <[EMAIL PROTECTED]>
X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at riseup.net
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: 2
This is fixed in the .5 version which is currently in unstable, making
its way down into testing, I'm closing this bug.
Thanks!
Micah
On Wed, 20 Apr 2005, Alexander Gerasiov wrote:
> Package: backupninja
> Version: 0.4.4-1
> Severity: normal
> Tags: patch
>
> >From nb's README:
> The configuration files are processed in alphabetical order.
>
> But that's not true.
>
> Here is a stupid patch:
>
> # diff -u `which backupninja` /tmp/bn
> --- /usr/sbin/backupninja 2005-03-19 06:18:01.000000000 +0300
> +++ /tmp/bn 2005-04-20 20:12:10.000000000 +0400
> @@ -429,7 +429,7 @@
> if [ "$singlerun" ]; then
> files=$singlerun
> else
> - files=`find $configdirectory -mindepth 1 `
> + files=`find $configdirectory -mindepth 1 | sort`
> fi
>
> for file in $files; do
>
>
> -- System Information:
> Debian Release: 3.1
> APT prefers testing
> APT policy: (620, 'testing'), (600, 'unstable'), (550, 'experimental')
> Architecture: i386 (i686)
> Kernel: Linux 2.6.10-1-686
> Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
>
> 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
>
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]