Merge lp:~allison/ubuntu/oneiric/backuppc/bug-852484 into lp:ubuntu/oneiric/backuppc

Proposed by Dave Walker
Status: Merged
Merged at revision: 34
Proposed branch: lp:~allison/ubuntu/oneiric/backuppc/bug-852484
Merge into: lp:ubuntu/oneiric/backuppc
Diff against target: 1367 lines (+200/-140)
74 files modified
ChangeLog (+24/-1)
README (+7/-7)
bin/BackupPC (+1/-1)
bin/BackupPC_archive (+1/-1)
bin/BackupPC_archiveHost (+1/-1)
bin/BackupPC_archiveStart (+1/-1)
bin/BackupPC_attribPrint (+1/-1)
bin/BackupPC_dump (+1/-1)
bin/BackupPC_fixupBackupSummary (+1/-1)
bin/BackupPC_link (+1/-1)
bin/BackupPC_nightly (+1/-1)
bin/BackupPC_restore (+1/-1)
bin/BackupPC_sendEmail (+1/-1)
bin/BackupPC_serverMesg (+1/-1)
bin/BackupPC_tarCreate (+1/-1)
bin/BackupPC_tarExtract (+1/-1)
bin/BackupPC_tarPCCopy (+1/-1)
bin/BackupPC_trashClean (+1/-1)
bin/BackupPC_zcat (+1/-1)
bin/BackupPC_zipCreate (+1/-1)
cgi-bin/BackupPC_Admin (+1/-1)
conf/BackupPC_stnd.css (+1/-1)
conf/BackupPC_stnd_orig.css (+1/-1)
configure.pl (+6/-6)
debian/changelog (+29/-0)
debian/control (+1/-1)
doc/BackupPC.html (+19/-17)
doc/BackupPC.pod (+19/-17)
init.d/src/debian-backuppc (+1/-1)
init.d/src/gentoo-backuppc (+1/-1)
init.d/src/linux-backuppc (+1/-1)
init.d/src/slackware-backuppc (+1/-1)
init.d/src/solaris-backuppc (+1/-1)
init.d/src/suse-backuppc (+1/-1)
lib/BackupPC/Attrib.pm (+10/-5)
lib/BackupPC/CGI/AdminOptions.pm (+1/-1)
lib/BackupPC/CGI/Archive.pm (+1/-1)
lib/BackupPC/CGI/ArchiveInfo.pm (+1/-1)
lib/BackupPC/CGI/Browse.pm (+3/-3)
lib/BackupPC/CGI/DirHistory.pm (+1/-1)
lib/BackupPC/CGI/EditConfig.pm (+1/-1)
lib/BackupPC/CGI/EmailSummary.pm (+1/-1)
lib/BackupPC/CGI/GeneralInfo.pm (+1/-1)
lib/BackupPC/CGI/HostInfo.pm (+1/-1)
lib/BackupPC/CGI/LOGlist.pm (+1/-1)
lib/BackupPC/CGI/Lib.pm (+1/-1)
lib/BackupPC/CGI/Queue.pm (+1/-1)
lib/BackupPC/CGI/RSS.pm (+1/-1)
lib/BackupPC/CGI/ReloadServer.pm (+1/-1)
lib/BackupPC/CGI/Restore.pm (+1/-1)
lib/BackupPC/CGI/RestoreFile.pm (+1/-1)
lib/BackupPC/CGI/RestoreInfo.pm (+1/-1)
lib/BackupPC/CGI/StartServer.pm (+1/-1)
lib/BackupPC/CGI/StartStopBackup.pm (+1/-1)
lib/BackupPC/CGI/StopServer.pm (+1/-1)
lib/BackupPC/CGI/Summary.pm (+1/-1)
lib/BackupPC/CGI/View.pm (+1/-1)
lib/BackupPC/Config/Meta.pm (+1/-1)
lib/BackupPC/FileZIO.pm (+1/-1)
lib/BackupPC/Lib.pm (+2/-2)
lib/BackupPC/PoolWrite.pm (+1/-1)
lib/BackupPC/Storage.pm (+1/-1)
lib/BackupPC/Storage/Text.pm (+1/-1)
lib/BackupPC/View.pm (+1/-1)
lib/BackupPC/Xfer.pm (+1/-1)
lib/BackupPC/Xfer/Archive.pm (+1/-1)
lib/BackupPC/Xfer/Ftp.pm (+1/-1)
lib/BackupPC/Xfer/Protocol.pm (+9/-12)
lib/BackupPC/Xfer/Rsync.pm (+5/-4)
lib/BackupPC/Xfer/RsyncDigest.pm (+1/-1)
lib/BackupPC/Xfer/RsyncFileIO.pm (+1/-1)
lib/BackupPC/Xfer/Smb.pm (+1/-1)
lib/BackupPC/Xfer/Tar.pm (+5/-4)
lib/BackupPC/Zip/FileMember.pm (+1/-1)
To merge this branch: bzr merge lp:~allison/ubuntu/oneiric/backuppc/bug-852484
Reviewer Review Type Date Requested Status
James Page Approve
Ubuntu branches Pending
Review via email: mp+75973@code.launchpad.net
To post a comment you must log in.
Revision history for this message
James Page (james-page) wrote :

LGTM

Revision history for this message
James Page (james-page) wrote :

However I can't upload - but still LGTM!

review: Approve
Revision history for this message
Dave Walker (davewalker) wrote :

Uploading thanks to ~james-page's review.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'ChangeLog'
--- ChangeLog 2010-11-21 14:59:53 +0000
+++ ChangeLog 2011-09-19 08:47:26 +0000
@@ -11,13 +11,36 @@
11#11#
12#========================================================================12#========================================================================
13#13#
14# Version 3.2.0, released 31 Jul 2010.14# Version 3.2.1, released 24 Apr 2011.
15#15#
16# See http://backuppc.sourceforge.net.16# See http://backuppc.sourceforge.net.
17#17#
18#========================================================================18#========================================================================
1919
20#------------------------------------------------------------------------20#------------------------------------------------------------------------
21# Version 3.2.1, 24 Apr 2011
22#------------------------------------------------------------------------
23
24* Ensure $num is numeric in lib/BackupPC/CGI/Browse.pm to avoid XSS
25 attack. Report and patch by Adam E.
26
27* Fixed application of "*" in $Conf{BackupFilesOnly} and
28 $Conf{BackupFilesExclud} for 2nd and later shares. Reported
29 by Alessandro and Alexander Maringer.
30
31* Fixed email status check in lib/BackupPC/CGI/HostInfo.pl so that
32 empty email info doesn't appear; reported by Wayne Trevena,
33 and based on patch from Tyler Wagner.
34
35* Several fixes to FTP xfer mode related to file excludes, from
36 Dave Pearce.
37
38* Wrapped eval() around unpack() in lib/BackupPC/Attrib.pm to avoid
39 failures on corrupted attrib files; patch from Tim Connors.
40
41* Applied documention patch from Alexander Moisseev.
42
43#------------------------------------------------------------------------
21# Version 3.2.0, 31 Jul 201044# Version 3.2.0, 31 Jul 2010
22#------------------------------------------------------------------------45#------------------------------------------------------------------------
2346
2447
=== modified file 'README'
--- README 2010-11-21 14:59:53 +0000
+++ README 2011-09-19 08:47:26 +0000
@@ -1,11 +1,11 @@
11
2 BackupPC2 BackupPC
33
4 Version 3.2.04 Version 3.2.1
55
6 31 Jul 20106 24 Apr 2011
77
8 Copyright (C) 2001-2009 Craig Barratt. All rights reserved.8 Copyright (C) 2001-2010 Craig Barratt. All rights reserved.
99
10 This program is free software; you can redistribute it and/or10 This program is free software; you can redistribute it and/or
11 modify it under the terms of the GNU General Public License.11 modify it under the terms of the GNU General Public License.
@@ -28,8 +28,8 @@
2828
29To install BackupPC run these commands as root:29To install BackupPC run these commands as root:
3030
31 tar zxf BackupPC-3.2.0.tar.gz31 tar zxf BackupPC-3.2.1.tar.gz
32 cd BackupPC-3.2.032 cd BackupPC-3.2.1
33 perl configure.pl33 perl configure.pl
3434
35This will automatically determine some system information and prompt you35This will automatically determine some system information and prompt you
3636
=== modified file 'bin/BackupPC'
--- bin/BackupPC 2010-11-21 14:59:53 +0000
+++ bin/BackupPC 2011-09-19 08:47:26 +0000
@@ -47,7 +47,7 @@
47#47#
48#========================================================================48#========================================================================
49#49#
50# Version 3.2.0, released 31 Jul 2010.50# Version 3.2.1, released 24 Apr 2011.
51#51#
52# See http://backuppc.sourceforge.net.52# See http://backuppc.sourceforge.net.
53#53#
5454
=== modified file 'bin/BackupPC_archive'
--- bin/BackupPC_archive 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_archive 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
3636
=== modified file 'bin/BackupPC_archiveHost'
--- bin/BackupPC_archiveHost 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_archiveHost 2011-09-19 08:47:26 +0000
@@ -38,7 +38,7 @@
38#38#
39#========================================================================39#========================================================================
40#40#
41# Version 3.2.0, released 31 Jul 2010.41# Version 3.2.1, released 24 Apr 2011.
42#42#
43# See http://backuppc.sourceforge.net.43# See http://backuppc.sourceforge.net.
44#44#
4545
=== modified file 'bin/BackupPC_archiveStart'
--- bin/BackupPC_archiveStart 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_archiveStart 2011-09-19 08:47:26 +0000
@@ -35,7 +35,7 @@
35#35#
36#========================================================================36#========================================================================
37#37#
38# Version 3.2.0, released 31 Jul 2010.38# Version 3.2.1, released 24 Apr 2011.
39#39#
40# See http://backuppc.sourceforge.net.40# See http://backuppc.sourceforge.net.
41#41#
4242
=== modified file 'bin/BackupPC_attribPrint'
--- bin/BackupPC_attribPrint 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_attribPrint 2011-09-19 08:47:26 +0000
@@ -31,7 +31,7 @@
31#31#
32#========================================================================32#========================================================================
33#33#
34# Version 3.2.0, released 31 Jul 2010.34# Version 3.2.1, released 24 Apr 2011.
35#35#
36# See http://backuppc.sourceforge.net.36# See http://backuppc.sourceforge.net.
37#37#
3838
=== modified file 'bin/BackupPC_dump'
--- bin/BackupPC_dump 2011-03-07 11:35:50 +0000
+++ bin/BackupPC_dump 2011-09-19 08:47:26 +0000
@@ -77,7 +77,7 @@
77#77#
78#========================================================================78#========================================================================
79#79#
80# Version 3.2.0, released 31 Jul 2010.80# Version 3.2.1, released 24 Apr 2011.
81#81#
82# See http://backuppc.sourceforge.net.82# See http://backuppc.sourceforge.net.
83#83#
8484
=== modified file 'bin/BackupPC_fixupBackupSummary'
--- bin/BackupPC_fixupBackupSummary 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_fixupBackupSummary 2011-09-19 08:47:26 +0000
@@ -30,7 +30,7 @@
30#30#
31#========================================================================31#========================================================================
32#32#
33# Version 3.2.0, released 31 Jul 2010.33# Version 3.2.1, released 24 Apr 2011.
34#34#
35# See http://backuppc.sourceforge.net.35# See http://backuppc.sourceforge.net.
36#36#
3737
=== modified file 'bin/BackupPC_link'
--- bin/BackupPC_link 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_link 2011-09-19 08:47:26 +0000
@@ -39,7 +39,7 @@
39#39#
40#========================================================================40#========================================================================
41#41#
42# Version 3.2.0, released 31 Jul 2010.42# Version 3.2.1, released 24 Apr 2011.
43#43#
44# See http://backuppc.sourceforge.net.44# See http://backuppc.sourceforge.net.
45#45#
4646
=== modified file 'bin/BackupPC_nightly'
--- bin/BackupPC_nightly 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_nightly 2011-09-19 08:47:26 +0000
@@ -55,7 +55,7 @@
55#55#
56#========================================================================56#========================================================================
57#57#
58# Version 3.2.0, released 31 Jul 2010.58# Version 3.2.1, released 24 Apr 2011.
59#59#
60# See http://backuppc.sourceforge.net.60# See http://backuppc.sourceforge.net.
61#61#
6262
=== modified file 'bin/BackupPC_restore'
--- bin/BackupPC_restore 2011-03-07 11:35:50 +0000
+++ bin/BackupPC_restore 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
3636
=== modified file 'bin/BackupPC_sendEmail'
--- bin/BackupPC_sendEmail 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_sendEmail 2011-09-19 08:47:26 +0000
@@ -31,7 +31,7 @@
31#31#
32#========================================================================32#========================================================================
33#33#
34# Version 3.2.0, released 31 Jul 2010.34# Version 3.2.1, released 24 Apr 2011.
35#35#
36# See http://backuppc.sourceforge.net.36# See http://backuppc.sourceforge.net.
37#37#
3838
=== modified file 'bin/BackupPC_serverMesg'
--- bin/BackupPC_serverMesg 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_serverMesg 2011-09-19 08:47:26 +0000
@@ -43,7 +43,7 @@
43#43#
44#========================================================================44#========================================================================
45#45#
46# Version 3.2.0, released 31 Jul 2010.46# Version 3.2.1, released 24 Apr 2011.
47#47#
48# See http://backuppc.sourceforge.net.48# See http://backuppc.sourceforge.net.
49#49#
5050
=== modified file 'bin/BackupPC_tarCreate'
--- bin/BackupPC_tarCreate 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_tarCreate 2011-09-19 08:47:26 +0000
@@ -55,7 +55,7 @@
55#55#
56#========================================================================56#========================================================================
57#57#
58# Version 3.2.0, released 31 Jul 2010.58# Version 3.2.1, released 24 Apr 2011.
59#59#
60# See http://backuppc.sourceforge.net.60# See http://backuppc.sourceforge.net.
61#61#
6262
=== modified file 'bin/BackupPC_tarExtract'
--- bin/BackupPC_tarExtract 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_tarExtract 2011-09-19 08:47:26 +0000
@@ -27,7 +27,7 @@
27#27#
28#========================================================================28#========================================================================
29#29#
30# Version 3.2.0, released 31 Jul 2010.30# Version 3.2.1, released 24 Apr 2011.
31#31#
32# See http://backuppc.sourceforge.net.32# See http://backuppc.sourceforge.net.
33#33#
3434
=== modified file 'bin/BackupPC_tarPCCopy'
--- bin/BackupPC_tarPCCopy 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_tarPCCopy 2011-09-19 08:47:26 +0000
@@ -38,7 +38,7 @@
38#38#
39#========================================================================39#========================================================================
40#40#
41# Version 3.2.0, released 31 Jul 2010.41# Version 3.2.1, released 24 Apr 2011.
42#42#
43# See http://backuppc.sourceforge.net.43# See http://backuppc.sourceforge.net.
44#44#
4545
=== modified file 'bin/BackupPC_trashClean'
--- bin/BackupPC_trashClean 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_trashClean 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
3636
=== modified file 'bin/BackupPC_zcat'
--- bin/BackupPC_zcat 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_zcat 2011-09-19 08:47:26 +0000
@@ -32,7 +32,7 @@
32#32#
33#========================================================================33#========================================================================
34#34#
35# Version 3.2.0, released 31 Jul 2010.35# Version 3.2.1, released 24 Apr 2011.
36#36#
37# See http://backuppc.sourceforge.net.37# See http://backuppc.sourceforge.net.
38#38#
3939
=== modified file 'bin/BackupPC_zipCreate'
--- bin/BackupPC_zipCreate 2010-11-21 14:59:53 +0000
+++ bin/BackupPC_zipCreate 2011-09-19 08:47:26 +0000
@@ -51,7 +51,7 @@
51#51#
52#========================================================================52#========================================================================
53#53#
54# Version 3.2.0, released 31 Jul 2010.54# Version 3.2.1, released 24 Apr 2011.
55#55#
56# See http://backuppc.sourceforge.net.56# See http://backuppc.sourceforge.net.
57#57#
5858
=== modified file 'cgi-bin/BackupPC_Admin'
--- cgi-bin/BackupPC_Admin 2010-11-21 14:59:53 +0000
+++ cgi-bin/BackupPC_Admin 2011-09-19 08:47:26 +0000
@@ -39,7 +39,7 @@
39#39#
40#========================================================================40#========================================================================
41#41#
42# Version 3.2.0, released 31 Jul 2010.42# Version 3.2.1, released 24 Apr 2011.
43#43#
44# See http://backuppc.sourceforge.net.44# See http://backuppc.sourceforge.net.
45#45#
4646
=== modified file 'conf/BackupPC_stnd.css'
--- conf/BackupPC_stnd.css 2010-11-21 14:59:53 +0000
+++ conf/BackupPC_stnd.css 2011-09-19 08:47:26 +0000
@@ -1,7 +1,7 @@
1/*1/*
2 * BackupPC standard CSS definitions2 * BackupPC standard CSS definitions
3 *3 *
4 * Version 3.2.0, released 31 Jul 2010.4 * Version 3.2.1, released 24 Apr 2011.
5 *5 *
6 * See http://backuppc.sourceforge.net.6 * See http://backuppc.sourceforge.net.
7 *7 *
88
=== modified file 'conf/BackupPC_stnd_orig.css'
--- conf/BackupPC_stnd_orig.css 2010-11-21 14:59:53 +0000
+++ conf/BackupPC_stnd_orig.css 2011-09-19 08:47:26 +0000
@@ -1,7 +1,7 @@
1/*1/*
2 * BackupPC standard CSS definitions2 * BackupPC standard CSS definitions
3 *3 *
4 * Version 3.2.0, released 31 Jul 2010.4 * Version 3.2.1, released 24 Apr 2011.
5 *5 *
6 * See http://backuppc.sourceforge.net.6 * See http://backuppc.sourceforge.net.
7 *7 *
88
=== modified file 'configure.pl'
--- configure.pl 2011-03-07 11:35:50 +0000
+++ configure.pl 2011-09-19 08:47:26 +0000
@@ -19,7 +19,7 @@
19# Craig Barratt <cbarratt@users.sourceforge.net>19# Craig Barratt <cbarratt@users.sourceforge.net>
20#20#
21# COPYRIGHT21# COPYRIGHT
22# Copyright (C) 2001-2009 Craig Barratt22# Copyright (C) 2001-2010 Craig Barratt
23#23#
24# This program is free software; you can redistribute it and/or modify24# This program is free software; you can redistribute it and/or modify
25# it under the terms of the GNU General Public License as published by25# it under the terms of the GNU General Public License as published by
@@ -37,7 +37,7 @@
37#37#
38#========================================================================38#========================================================================
39#39#
40# Version 3.2.0, released 31 Jul 2010.40# Version 3.2.1, released 24 Apr 2011.
41#41#
42# See http://backuppc.sourceforge.net.42# See http://backuppc.sourceforge.net.
43#43#
@@ -72,7 +72,7 @@
72BackupPC distribution. This probably means you did not cd to the72BackupPC distribution. This probably means you did not cd to the
73unpacked BackupPC distribution before running configure.pl, eg:73unpacked BackupPC distribution before running configure.pl, eg:
7474
75 cd BackupPC-3.2.075 cd BackupPC-3.2.1
76 ./configure.pl76 ./configure.pl
7777
78Please try again.78Please try again.
@@ -673,7 +673,7 @@
673 #673 #
674 # Install new CSS file, making a backup copy if necessary674 # Install new CSS file, making a backup copy if necessary
675 #675 #
676 my $cssBackup = "$DestDir$Conf{CgiImageDir}/BackupPC_stnd.css.pre-3.2.0";676 my $cssBackup = "$DestDir$Conf{CgiImageDir}/BackupPC_stnd.css.pre-3.2.1";
677 if ( -f "$DestDir$Conf{CgiImageDir}/BackupPC_stnd.css" && !-f $cssBackup ) {677 if ( -f "$DestDir$Conf{CgiImageDir}/BackupPC_stnd.css" && !-f $cssBackup ) {
678 rename("$DestDir$Conf{CgiImageDir}/BackupPC_stnd.css", $cssBackup);678 rename("$DestDir$Conf{CgiImageDir}/BackupPC_stnd.css", $cssBackup);
679 }679 }
@@ -893,7 +893,7 @@
893#893#
894# Now backup and write the config file894# Now backup and write the config file
895#895#
896my $confCopy = "$dest.pre-3.2.0";896my $confCopy = "$dest.pre-3.2.1";
897if ( -f $dest && !-f $confCopy ) {897if ( -f $dest && !-f $confCopy ) {
898 #898 #
899 # Make copy of config file, preserving ownership and modes899 # Make copy of config file, preserving ownership and modes
@@ -1386,7 +1386,7 @@
13861386
1387=head1 COPYRIGHT1387=head1 COPYRIGHT
13881388
1389Copyright (C) 2001-2009 Craig Barratt.1389Copyright (C) 2001-2010 Craig Barratt.
13901390
1391This program is free software; you can redistribute it and/or modify1391This program is free software; you can redistribute it and/or modify
1392it under the terms of the GNU General Public License as published by1392it under the terms of the GNU General Public License as published by
13931393
=== modified file 'debian/changelog'
--- debian/changelog 2011-06-15 16:28:41 +0000
+++ debian/changelog 2011-09-19 08:47:26 +0000
@@ -1,3 +1,32 @@
1backuppc (3.2.1-1ubuntu1) oneiric; urgency=high
2
3 * Merge from debian unstable. (LP: #852484) Remaining changes:
4 - debian/backup.init, debian/rules, debian/postinst: Do not call init
5 script on shutdown and reboot (TearDown) (Debian #488660)
6 - debian/control: Add dependency for libsocket6-perl.
7 - debian/control: Drop build dependency to 'par2', it's in universe.
8 - configure.pl: Do not test for par2 being available at build time
9 - debian/control: depend on default-mta | mail-transport-agent, instead of
10 enumerating a long list of alternative MTAs.
11 - debian/rules: installing setuid wrapper with setuid bit set, and no
12 permissions granted to other (mode 4750)
13
14 -- Allison Randal <allison@canonical.com> Sun, 18 Sep 2011 17:37:55 -0700
15
16backuppc (3.2.1-1) unstable; urgency=high
17
18 * New upstream release. Closes: #641450
19 * urgency set to high because of a security fix
20
21 -- Ludovic Drolez <ldrolez@debian.org> Tue, 13 Sep 2011 20:38:00 +0200
22
23backuppc (3.2.0-4.1) unstable; urgency=low
24
25 * Non-maintainer upload.
26 * Use inetutils-ping as an alternative to iputils-ping. Closes: #630777
27
28 -- Bernd Zeimetz <bzed@debian.org> Tue, 28 Jun 2011 22:31:10 +0200
29
1backuppc (3.2.0-4ubuntu1) oneiric; urgency=low30backuppc (3.2.0-4ubuntu1) oneiric; urgency=low
231
3 * Merge from debian unstable. Remaining changes:32 * Merge from debian unstable. Remaining changes:
433
=== modified file 'debian/control'
--- debian/control 2011-06-15 16:28:41 +0000
+++ debian/control 2011-09-19 08:47:26 +0000
@@ -8,7 +8,7 @@
88
9Package: backuppc9Package: backuppc
10Architecture: any10Architecture: any
11Depends: ${shlibs:Depends}, ${perl:Depends}, libdigest-md5-perl, libcompress-zlib-perl, libarchive-zip-perl, tar (>> 1.13), adduser (>=3.9), dpkg (>=1.8.3), apache2 | httpd, ${misc:Depends}, smbclient, samba-common-bin, bzip2, default-mta | mail-transport-agent, iputils-ping, ucf, libtime-modules-perl, libwww-perl, libsocket6-perl11Depends: ${shlibs:Depends}, ${perl:Depends}, libdigest-md5-perl, libcompress-zlib-perl, libarchive-zip-perl, tar (>> 1.13), adduser (>=3.9), dpkg (>=1.8.3), apache2 | httpd, ${misc:Depends}, smbclient, samba-common-bin, bzip2, default-mta | mail-transport-agent, iputils-ping | inetutils-ping, ucf, libtime-modules-perl, libwww-perl, libsocket6-perl
12Recommends: rsync, libfile-rsyncp-perl (>= 0.68), openssh-client | ssh-client, rrdtool, libio-dirent-perl12Recommends: rsync, libfile-rsyncp-perl (>= 0.68), openssh-client | ssh-client, rrdtool, libio-dirent-perl
13Suggests: w3m | www-browser, par213Suggests: w3m | www-browser, par2
14Conflicts: libfile-rsyncp-perl (<< 0.68)14Conflicts: libfile-rsyncp-perl (<< 0.68)
1515
=== modified file 'doc/BackupPC.html'
--- doc/BackupPC.html 2010-11-21 14:59:53 +0000
+++ doc/BackupPC.html 2011-09-19 08:47:26 +0000
@@ -124,8 +124,8 @@
124<p>124<p>
125</p>125</p>
126<h1><a name="backuppc_introduction">BackupPC Introduction</a></h1>126<h1><a name="backuppc_introduction">BackupPC Introduction</a></h1>
127<p>This documentation describes BackupPC version 3.2.0,127<p>This documentation describes BackupPC version 3.2.1,
128released on 31 Jul 2010.</p>128released on 24 Apr 2011.</p>
129<p>129<p>
130</p>130</p>
131<h2><a name="overview">Overview</a></h2>131<h2><a name="overview">Overview</a></h2>
@@ -591,7 +591,7 @@
591and install BackupPC yourself. If you use a package provided by a591and install BackupPC yourself. If you use a package provided by a
592distribution, the package management system should take of installing592distribution, the package management system should take of installing
593any needed dependencies.</p>593any needed dependencies.</p>
594<p>First off, there are three perl modules you should install.594<p>First off, there are five perl modules you should install.
595These are all optional, but highly recommended:</p>595These are all optional, but highly recommended:</p>
596<dl>596<dl>
597<dt><strong><a name="compress_zlib" class="item">Compress::Zlib</a></strong></dt>597<dt><strong><a name="compress_zlib" class="item">Compress::Zlib</a></strong></dt>
@@ -624,12 +624,14 @@
624File::RsyncP is available from <a href="http://perlrsync.sourceforge.net">http://perlrsync.sourceforge.net</a>.624File::RsyncP is available from <a href="http://perlrsync.sourceforge.net">http://perlrsync.sourceforge.net</a>.
625Version 0.68 or later is required.</p>625Version 0.68 or later is required.</p>
626</dd>626</dd>
627<dt><strong><a name="file_rsyncp2" class="item">File::RsyncP</a></strong></dt>627<dt><strong><a name="file_listing_net_ftp_net_ftp_retrhandle_net_ftp_autoreconnect" class="item">File::Listing, Net::FTP, Net::FTP::RetrHandle, Net::FTP::AutoReconnect</a></strong></dt>
628628
629<dd>629<dd>
630<p>To use ftp with BackupPC you will need to install three libraries:630<p>To use ftp with BackupPC you will need four libraries, but actually
631Net::FTP, Net::FTP::RetrHandle and Net::FTP::AutoReconnect. You can631need to install only File::Listing from <a href="http://www.cpan.org">http://www.cpan.org</a>.
632run &quot;perldoc Net::FTP&quot; to see if a particular module is installed.</p>632You can run &quot;perldoc File::Listing&quot; to see if this module is installed.
633Net::FTP is a standard module. Net::FTP::RetrHandle and
634Net::FTP::AutoReconnect included in BackupPC distribution.</p>
633</dd>635</dd>
634</dl>636</dl>
635<p>To build and install these packages you should use the cpan program.637<p>To build and install these packages you should use the cpan program.
@@ -644,27 +646,27 @@
644 make install</pre>646 make install</pre>
645<p>The same sequence of commands can be used for each module.</p>647<p>The same sequence of commands can be used for each module.</p>
646<p>Now let's move onto BackupPC itself. After fetching648<p>Now let's move onto BackupPC itself. After fetching
647BackupPC-3.2.0.tar.gz, run these commands as root:</p>649BackupPC-3.2.1.tar.gz, run these commands as root:</p>
648<pre>650<pre>
649 tar zxf BackupPC-3.2.0.tar.gz651 tar zxf BackupPC-3.2.1.tar.gz
650 cd BackupPC-3.2.0652 cd BackupPC-3.2.1
651 perl configure.pl</pre>653 perl configure.pl</pre>
652<p>In the future this release might also have patches available on the654<p>In the future this release might also have patches available on the
653SourceForge site. These patch files are text files, with a name of655SourceForge site. These patch files are text files, with a name of
654the form</p>656the form</p>
655<pre>657<pre>
656 BackupPC-3.2.0plN.diff</pre>658 BackupPC-3.2.1plN.diff</pre>
657<p>where N is the patch level, eg: pl2 is patch-level 2. These659<p>where N is the patch level, eg: pl2 is patch-level 2. These
658patch files are cumulative: you only need apply the last patch660patch files are cumulative: you only need apply the last patch
659file, not all the earlier patch files. If a patch file is661file, not all the earlier patch files. If a patch file is
660available, eg: BackupPC-3.2.0pl2.diff, you should apply662available, eg: BackupPC-3.2.1pl2.diff, you should apply
661the patch after extracting the tar file:</p>663the patch after extracting the tar file:</p>
662<pre>664<pre>
663 # fetch BackupPC-3.2.0.tar.gz665 # fetch BackupPC-3.2.1.tar.gz
664 # fetch BackupPC-3.2.0pl2.diff666 # fetch BackupPC-3.2.1pl2.diff
665 tar zxf BackupPC-3.2.0.tar.gz667 tar zxf BackupPC-3.2.1.tar.gz
666 cd BackupPC-3.2.0668 cd BackupPC-3.2.1
667 patch -p0 &lt; ../BackupPC-3.2.0pl2.diff669 patch -p0 &lt; ../BackupPC-3.2.1pl2.diff
668 perl configure.pl</pre>670 perl configure.pl</pre>
669<p>A patch file includes comments that describe that bug fixes671<p>A patch file includes comments that describe that bug fixes
670and changes. Feel free to review it before you apply the patch.</p>672and changes. Feel free to review it before you apply the patch.</p>
671673
=== modified file 'doc/BackupPC.pod'
--- doc/BackupPC.pod 2010-11-21 14:59:53 +0000
+++ doc/BackupPC.pod 2011-09-19 08:47:26 +0000
@@ -1,7 +1,7 @@
1=head1 BackupPC Introduction1=head1 BackupPC Introduction
22
3This documentation describes BackupPC version 3.2.0,3This documentation describes BackupPC version 3.2.1,
4released on 31 Jul 2010.4released on 24 Apr 2011.
55
6=head2 Overview6=head2 Overview
77
@@ -522,7 +522,7 @@
522distribution, the package management system should take of installing522distribution, the package management system should take of installing
523any needed dependencies.523any needed dependencies.
524524
525First off, there are three perl modules you should install.525First off, there are five perl modules you should install.
526These are all optional, but highly recommended:526These are all optional, but highly recommended:
527527
528=over 4528=over 4
@@ -553,11 +553,13 @@
553File::RsyncP is available from L<http://perlrsync.sourceforge.net>.553File::RsyncP is available from L<http://perlrsync.sourceforge.net>.
554Version 0.68 or later is required.554Version 0.68 or later is required.
555555
556=item File::RsyncP556=item File::Listing, Net::FTP, Net::FTP::RetrHandle, Net::FTP::AutoReconnect
557557
558To use ftp with BackupPC you will need to install three libraries:558To use ftp with BackupPC you will need four libraries, but actually
559Net::FTP, Net::FTP::RetrHandle and Net::FTP::AutoReconnect. You can559need to install only File::Listing from L<http://www.cpan.org>.
560run "perldoc Net::FTP" to see if a particular module is installed.560You can run "perldoc File::Listing" to see if this module is installed.
561Net::FTP is a standard module. Net::FTP::RetrHandle and
562Net::FTP::AutoReconnect included in BackupPC distribution.
561563
562=back564=back
563565
@@ -575,29 +577,29 @@
575The same sequence of commands can be used for each module.577The same sequence of commands can be used for each module.
576578
577Now let's move onto BackupPC itself. After fetching579Now let's move onto BackupPC itself. After fetching
578BackupPC-3.2.0.tar.gz, run these commands as root:580BackupPC-3.2.1.tar.gz, run these commands as root:
579581
580 tar zxf BackupPC-3.2.0.tar.gz582 tar zxf BackupPC-3.2.1.tar.gz
581 cd BackupPC-3.2.0583 cd BackupPC-3.2.1
582 perl configure.pl584 perl configure.pl
583585
584In the future this release might also have patches available on the586In the future this release might also have patches available on the
585SourceForge site. These patch files are text files, with a name of587SourceForge site. These patch files are text files, with a name of
586the form588the form
587589
588 BackupPC-3.2.0plN.diff590 BackupPC-3.2.1plN.diff
589591
590where N is the patch level, eg: pl2 is patch-level 2. These592where N is the patch level, eg: pl2 is patch-level 2. These
591patch files are cumulative: you only need apply the last patch593patch files are cumulative: you only need apply the last patch
592file, not all the earlier patch files. If a patch file is594file, not all the earlier patch files. If a patch file is
593available, eg: BackupPC-3.2.0pl2.diff, you should apply595available, eg: BackupPC-3.2.1pl2.diff, you should apply
594the patch after extracting the tar file:596the patch after extracting the tar file:
595597
596 # fetch BackupPC-3.2.0.tar.gz598 # fetch BackupPC-3.2.1.tar.gz
597 # fetch BackupPC-3.2.0pl2.diff599 # fetch BackupPC-3.2.1pl2.diff
598 tar zxf BackupPC-3.2.0.tar.gz600 tar zxf BackupPC-3.2.1.tar.gz
599 cd BackupPC-3.2.0601 cd BackupPC-3.2.1
600 patch -p0 < ../BackupPC-3.2.0pl2.diff602 patch -p0 < ../BackupPC-3.2.1pl2.diff
601 perl configure.pl603 perl configure.pl
602604
603A patch file includes comments that describe that bug fixes605A patch file includes comments that describe that bug fixes
604606
=== modified file 'init.d/src/debian-backuppc'
--- init.d/src/debian-backuppc 2010-11-21 14:59:53 +0000
+++ init.d/src/debian-backuppc 2011-09-19 08:47:26 +0000
@@ -4,7 +4,7 @@
4#4#
5# Startup init script for BackupPC on Debian.5# Startup init script for BackupPC on Debian.
6#6#
7# Distributed with BackupPC version 3.2.0, released 31 Jul 2010.7# Distributed with BackupPC version 3.2.1, released 24 Apr 2011.
8#8#
99
10set -e10set -e
1111
=== modified file 'init.d/src/gentoo-backuppc'
--- init.d/src/gentoo-backuppc 2010-11-21 14:59:53 +0000
+++ init.d/src/gentoo-backuppc 2011-09-19 08:47:26 +0000
@@ -4,7 +4,7 @@
4#4#
5# Startup init script for BackupPC on Gentoo` linux.5# Startup init script for BackupPC on Gentoo` linux.
6#6#
7# Distributed with BackupPC version 3.2.0, released 31 Jul 2010.7# Distributed with BackupPC version 3.2.1, released 24 Apr 2011.
8#8#
9# description: Starts and stops the BackupPC server9# description: Starts and stops the BackupPC server
10# Copy to /etc/init.d and run 'rc-update add backuppc default'10# Copy to /etc/init.d and run 'rc-update add backuppc default'
1111
=== modified file 'init.d/src/linux-backuppc'
--- init.d/src/linux-backuppc 2010-11-21 14:59:53 +0000
+++ init.d/src/linux-backuppc 2011-09-19 08:47:26 +0000
@@ -4,7 +4,7 @@
4#4#
5# Startup init script for BackupPC on Redhat linux.5# Startup init script for BackupPC on Redhat linux.
6#6#
7# Distributed with BackupPC version 3.2.0, released 31 Jul 2010.7# Distributed with BackupPC version 3.2.1, released 24 Apr 2011.
8#8#
9# chkconfig: - 91 359# chkconfig: - 91 35
10# description: Starts and stops the BackupPC server10# description: Starts and stops the BackupPC server
1111
=== modified file 'init.d/src/slackware-backuppc'
--- init.d/src/slackware-backuppc 2010-11-21 14:59:53 +0000
+++ init.d/src/slackware-backuppc 2011-09-19 08:47:26 +0000
@@ -4,7 +4,7 @@
4#4#
5# Startup init script for BackupPC for Slackware.5# Startup init script for BackupPC for Slackware.
6#6#
7# Distributed with BackupPC version 3.2.0, released 31 Jul 2010.7# Distributed with BackupPC version 3.2.1, released 24 Apr 2011.
8#8#
9# Provided by Tony Nelson.9# Provided by Tony Nelson.
10#10#
1111
=== modified file 'init.d/src/solaris-backuppc'
--- init.d/src/solaris-backuppc 2010-11-21 14:59:53 +0000
+++ init.d/src/solaris-backuppc 2011-09-19 08:47:26 +0000
@@ -4,7 +4,7 @@
4#4#
5# Startup init script for BackupPC for solaris.5# Startup init script for BackupPC for solaris.
6#6#
7# Distributed with BackupPC version 3.2.0, released 31 Jul 2010.7# Distributed with BackupPC version 3.2.1, released 24 Apr 2011.
8#8#
9# Not tested...9# Not tested...
10# 10#
1111
=== modified file 'init.d/src/suse-backuppc'
--- init.d/src/suse-backuppc 2010-11-21 14:59:53 +0000
+++ init.d/src/suse-backuppc 2011-09-19 08:47:26 +0000
@@ -4,7 +4,7 @@
4#4#
5# Startup init script for BackupPC on suse linux.5# Startup init script for BackupPC on suse linux.
6#6#
7# Distributed with BackupPC version 3.2.0, released 31 Jul 2010.7# Distributed with BackupPC version 3.2.1, released 24 Apr 2011.
8#8#
99
10set -e10set -e
1111
=== modified file 'lib/BackupPC/Attrib.pm' (properties changed: +x to -x)
--- lib/BackupPC/Attrib.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Attrib.pm 2011-09-19 08:47:26 +0000
@@ -30,7 +30,7 @@
30#30#
31#========================================================================31#========================================================================
32#32#
33# Version 3.2.0, released 31 Jul 2010.33# Version 3.2.1, released 24 Apr 2011.
34#34#
35# See http://backuppc.sourceforge.net.35# See http://backuppc.sourceforge.net.
36#36#
@@ -297,10 +297,15 @@
297 = $a->{files}{$file}{size} % (4096 * 1024 * 1024);297 = $a->{files}{$file}{size} % (4096 * 1024 * 1024);
298 $a->{files}{$file}{sizeDiv4GB}298 $a->{files}{$file}{sizeDiv4GB}
299 = int($a->{files}{$file}{size} / (4096 * 1024 * 1024));299 = int($a->{files}{$file}{size} / (4096 * 1024 * 1024));
300 $data .= pack("w a* w$nFldsW N$nFldsN", length($file), $file,300 eval {
301 @{$a->{files}{$file}}{@FldsUnixW},301 $data .= pack("w a* w$nFldsW N$nFldsN", length($file), $file,
302 @{$a->{files}{$file}}{@FldsUnixN},302 @{$a->{files}{$file}}{@FldsUnixW},
303 );303 @{$a->{files}{$file}}{@FldsUnixN},
304 );
305 };
306 if ( $@ ) {
307 $a->{_errStr} = "Can't pack attr for $file: " . Dumper($a->{files}{$file});
308 }
304 }309 }
305 return $data;310 return $data;
306}311}
307312
=== modified file 'lib/BackupPC/CGI/AdminOptions.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/AdminOptions.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/AdminOptions.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/Archive.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/Archive.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/Archive.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/ArchiveInfo.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/ArchiveInfo.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/ArchiveInfo.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/Browse.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/Browse.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/Browse.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
@@ -73,8 +73,8 @@
73 for ( $i = 0 ; $i < @Backups ; $i++ ) {73 for ( $i = 0 ; $i < @Backups ; $i++ ) {
74 last if ( $Backups[$i]{num} == $num );74 last if ( $Backups[$i]{num} == $num );
75 }75 }
76 if ( $i >= @Backups ) {76 if ( $i >= @Backups || $num !~ /^\d+$/ ) {
77 ErrorExit("Backup number $num for host ${EscHTML($host)} does"77 ErrorExit("Backup number ${EscHTML($num)} for host ${EscHTML($host)} does"
78 . " not exist.");78 . " not exist.");
79 }79 }
80 my $backupTime = timeStamp2($Backups[$i]{startTime});80 my $backupTime = timeStamp2($Backups[$i]{startTime});
8181
=== modified file 'lib/BackupPC/CGI/DirHistory.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/DirHistory.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/DirHistory.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/EditConfig.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/EditConfig.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/EditConfig.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/EmailSummary.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/EmailSummary.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/EmailSummary.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/GeneralInfo.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/GeneralInfo.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/GeneralInfo.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/HostInfo.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/HostInfo.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/HostInfo.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/LOGlist.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/LOGlist.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/LOGlist.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/Lib.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/Lib.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/Lib.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
3636
=== modified file 'lib/BackupPC/CGI/Queue.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/Queue.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/Queue.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/RSS.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/RSS.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/RSS.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/ReloadServer.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/ReloadServer.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/ReloadServer.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/Restore.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/Restore.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/Restore.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/RestoreFile.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/RestoreFile.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/RestoreFile.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/RestoreInfo.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/RestoreInfo.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/RestoreInfo.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/StartServer.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/StartServer.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/StartServer.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/StartStopBackup.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/StartStopBackup.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/StartStopBackup.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/StopServer.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/StopServer.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/StopServer.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/Summary.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/Summary.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/Summary.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/CGI/View.pm' (properties changed: +x to -x)
--- lib/BackupPC/CGI/View.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/CGI/View.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/Config.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Config/Meta.pm' (properties changed: +x to -x)
--- lib/BackupPC/Config/Meta.pm 2011-03-07 11:35:50 +0000
+++ lib/BackupPC/Config/Meta.pm 2011-09-19 08:47:26 +0000
@@ -28,7 +28,7 @@
28#28#
29#========================================================================29#========================================================================
30#30#
31# Version 3.2.0, released 31 Jul 2010.31# Version 3.2.1, released 24 Apr 2011.
32#32#
33# See http://backuppc.sourceforge.net.33# See http://backuppc.sourceforge.net.
34#34#
3535
=== modified file 'lib/BackupPC/FileZIO.pm' (properties changed: +x to -x)
--- lib/BackupPC/FileZIO.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/FileZIO.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
3636
=== modified file 'lib/BackupPC/Lang/de.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Lang/en.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Lang/es.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Lang/fr.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Lang/it.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Lang/nl.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Lang/pl.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Lang/pt_br.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Lang/zh_CN.pm' (properties changed: +x to -x)
=== modified file 'lib/BackupPC/Lib.pm' (properties changed: +x to -x)
--- lib/BackupPC/Lib.pm 2011-03-07 11:35:50 +0000
+++ lib/BackupPC/Lib.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
@@ -131,7 +131,7 @@
131131
132 my $bpc = bless {132 my $bpc = bless {
133 %$paths,133 %$paths,
134 Version => '3.2.0',134 Version => '3.2.1',
135 }, $class;135 }, $class;
136136
137 $bpc->{storage} = BackupPC::Storage->new($paths);137 $bpc->{storage} = BackupPC::Storage->new($paths);
138138
=== modified file 'lib/BackupPC/PoolWrite.pm' (properties changed: +x to -x)
--- lib/BackupPC/PoolWrite.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/PoolWrite.pm 2011-09-19 08:47:26 +0000
@@ -56,7 +56,7 @@
56#56#
57#========================================================================57#========================================================================
58#58#
59# Version 3.2.0, released 31 Jul 2010.59# Version 3.2.1, released 24 Apr 2011.
60#60#
61# See http://backuppc.sourceforge.net.61# See http://backuppc.sourceforge.net.
62#62#
6363
=== modified file 'lib/BackupPC/Storage.pm' (properties changed: +x to -x)
--- lib/BackupPC/Storage.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Storage.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
3636
=== modified file 'lib/BackupPC/Storage/Text.pm' (properties changed: +x to -x)
--- lib/BackupPC/Storage/Text.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Storage/Text.pm 2011-09-19 08:47:26 +0000
@@ -30,7 +30,7 @@
30#30#
31#========================================================================31#========================================================================
32#32#
33# Version 3.2.0, released 31 Jul 2010.33# Version 3.2.1, released 24 Apr 2011.
34#34#
35# See http://backuppc.sourceforge.net.35# See http://backuppc.sourceforge.net.
36#36#
3737
=== modified file 'lib/BackupPC/View.pm' (properties changed: +x to -x)
--- lib/BackupPC/View.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/View.pm 2011-09-19 08:47:26 +0000
@@ -31,7 +31,7 @@
31#31#
32#========================================================================32#========================================================================
33#33#
34# Version 3.2.0, released 31 Jul 2010.34# Version 3.2.1, released 24 Apr 2011.
35#35#
36# See http://backuppc.sourceforge.net.36# See http://backuppc.sourceforge.net.
37#37#
3838
=== modified file 'lib/BackupPC/Xfer.pm' (properties changed: +x to -x)
--- lib/BackupPC/Xfer.pm 2010-10-06 20:57:45 +0000
+++ lib/BackupPC/Xfer.pm 2011-09-19 08:47:26 +0000
@@ -30,7 +30,7 @@
30#30#
31#========================================================================31#========================================================================
32#32#
33# Version 3.2.0, released 31 Jul 2010.33# Version 3.2.1, released 24 Apr 2011.
34#34#
35# See http://backuppc.sourceforge.net.35# See http://backuppc.sourceforge.net.
36#36#
3737
=== modified file 'lib/BackupPC/Xfer/Archive.pm' (properties changed: +x to -x)
--- lib/BackupPC/Xfer/Archive.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Xfer/Archive.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
3636
=== modified file 'lib/BackupPC/Xfer/Ftp.pm' (properties changed: +x to -x)
--- lib/BackupPC/Xfer/Ftp.pm 2010-10-06 20:57:45 +0000
+++ lib/BackupPC/Xfer/Ftp.pm 2011-09-19 08:47:26 +0000
@@ -31,7 +31,7 @@
31#31#
32#========================================================================32#========================================================================
33#33#
34# Version 3.2.0, released 31 Jul 2010.34# Version 3.2.1, released 24 Apr 2011.
35#35#
36# See http://backuppc.sourceforge.net.36# See http://backuppc.sourceforge.net.
37#37#
3838
=== modified file 'lib/BackupPC/Xfer/Protocol.pm' (properties changed: +x to -x)
--- lib/BackupPC/Xfer/Protocol.pm 2010-10-06 20:57:45 +0000
+++ lib/BackupPC/Xfer/Protocol.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
@@ -288,12 +288,9 @@
288 my @BackupFilesExclude = ();288 my @BackupFilesExclude = ();
289 my ($shareName, $shareNameRE);289 my ($shareName, $shareNameRE);
290 290
291 #291 $shareName = $t->{shareName};
292 # $conf->{$shareType} shold be a reference to an array with one
293 # element, thanks to BackupFileConfFix().
294 #
295 $shareName = @{ $conf->{$shareType} }[0];
296 $shareName =~ s/\/*$//; # remove trailing slashes292 $shareName =~ s/\/*$//; # remove trailing slashes
293 $shareName = "/" if ( $shareName eq "" );
297294
298 $t->{shareName} = $shareName;295 $t->{shareName} = $shareName;
299 $t->{shareNameRE} = $bpc->glob2re($shareName);296 $t->{shareNameRE} = $bpc->glob2re($shareName);
@@ -422,18 +419,18 @@
422 my ($t, $file) = @_;419 my ($t, $file) = @_;
423420
424 my $shareName = $t->{shareName};421 my $shareName = $t->{shareName};
425 my $includes = $t->{BackupFilesOnly} || return 0;422 my $excludes = $t->{BackupFilesExclude} || return 0;
426 my $match = "";423 my $match = "";
427424
428 foreach my $include ( @{$includes} ) {425 foreach my $exclude ( @{$excludes} ) {
429426
430 #427 #
431 # construct regexp elsewhere to avoid syntactical evil428 # construct regexp elsewhere to avoid syntactical evil
432 #429 #
433 $match = '^' . quotemeta( $shareName . $include ) . '(?=\/.*)?';430 $match = '^' . quotemeta( $shareName . $exclude ) . '(?=\/.*)?';
434431
435 #432 #
436 # return true if the include folder is a parent of the file,433 # return true if the exclude folder is a parent of the file,
437 # or the folder itself.434 # or the folder itself.
438 #435 #
439 return 1 if ( $file =~ /$match/ );436 return 1 if ( $file =~ /$match/ );
@@ -441,10 +438,10 @@
441 $match = '^' . quotemeta($file) . '(?=\/.*)?';438 $match = '^' . quotemeta($file) . '(?=\/.*)?';
442 439
443 #440 #
444 # return true if the file is a parent of the include folder,441 # return true if the file is a parent of the exclude folder,
445 # or the folder itself.442 # or the folder itself.
446 #443 #
447 return 1 if ( "$shareName$include" =~ /$match/ );444 return 1 if ( "$shareName$exclude" =~ /$match/ );
448 }445 }
449 return 0;446 return 0;
450}447}
451448
=== modified file 'lib/BackupPC/Xfer/Rsync.pm' (properties changed: +x to -x)
--- lib/BackupPC/Xfer/Rsync.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Xfer/Rsync.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
@@ -126,7 +126,7 @@
126126
127 if ( defined($conf->{BackupFilesOnly}{$t->{shareName}}) ) {127 if ( defined($conf->{BackupFilesOnly}{$t->{shareName}}) ) {
128 my(@inc, @exc, %incDone, %excDone);128 my(@inc, @exc, %incDone, %excDone);
129 foreach my $file ( @{$conf->{BackupFilesOnly}{$t->{shareName}}} ) {129 foreach my $file2 ( @{$conf->{BackupFilesOnly}{$t->{shareName}}} ) {
130 #130 #
131 # If the user wants to just include /home/craig, then131 # If the user wants to just include /home/craig, then
132 # we need to do create include/exclude pairs at132 # we need to do create include/exclude pairs at
@@ -144,6 +144,7 @@
144 # To make this easier we do all the includes first and all144 # To make this easier we do all the includes first and all
145 # of the excludes at the end (hopefully they commute).145 # of the excludes at the end (hopefully they commute).
146 #146 #
147 my $file = $file2;
147 $file =~ s{/$}{};148 $file =~ s{/$}{};
148 $file = "/$file";149 $file = "/$file";
149 $file =~ s{//+}{/}g;150 $file =~ s{//+}{/}g;
@@ -185,11 +186,11 @@
185 }186 }
186 }187 }
187 if ( defined($conf->{BackupFilesExclude}{$t->{shareName}}) ) {188 if ( defined($conf->{BackupFilesExclude}{$t->{shareName}}) ) {
188 foreach my $file ( @{$conf->{BackupFilesExclude}{$t->{shareName}}} )189 foreach my $file2 ( @{$conf->{BackupFilesExclude}{$t->{shareName}}} ) {
189 {
190 #190 #
191 # just append additional exclude lists onto the end191 # just append additional exclude lists onto the end
192 #192 #
193 my $file = $file2;
193 $file = encode($conf->{ClientCharset}, $file)194 $file = encode($conf->{ClientCharset}, $file)
194 if ( $conf->{ClientCharset} ne "" );195 if ( $conf->{ClientCharset} ne "" );
195 push(@fileList, "--exclude=$file");196 push(@fileList, "--exclude=$file");
196197
=== modified file 'lib/BackupPC/Xfer/RsyncDigest.pm' (properties changed: +x to -x)
--- lib/BackupPC/Xfer/RsyncDigest.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Xfer/RsyncDigest.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
3636
=== modified file 'lib/BackupPC/Xfer/RsyncFileIO.pm' (properties changed: +x to -x)
--- lib/BackupPC/Xfer/RsyncFileIO.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Xfer/RsyncFileIO.pm 2011-09-19 08:47:26 +0000
@@ -26,7 +26,7 @@
26#26#
27#========================================================================27#========================================================================
28#28#
29# Version 3.2.0, released 31 Jul 2010.29# Version 3.2.1, released 24 Apr 2011.
30#30#
31# See http://backuppc.sourceforge.net.31# See http://backuppc.sourceforge.net.
32#32#
3333
=== modified file 'lib/BackupPC/Xfer/Smb.pm' (properties changed: +x to -x)
--- lib/BackupPC/Xfer/Smb.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Xfer/Smb.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
3636
=== modified file 'lib/BackupPC/Xfer/Tar.pm' (properties changed: +x to -x)
--- lib/BackupPC/Xfer/Tar.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Xfer/Tar.pm 2011-09-19 08:47:26 +0000
@@ -29,7 +29,7 @@
29#29#
30#========================================================================30#========================================================================
31#31#
32# Version 3.2.0, released 31 Jul 2010.32# Version 3.2.1, released 24 Apr 2011.
33#33#
34# See http://backuppc.sourceforge.net.34# See http://backuppc.sourceforge.net.
35#35#
@@ -71,8 +71,8 @@
71 $bpc->backupFileConfFix($conf, "TarShareName");71 $bpc->backupFileConfFix($conf, "TarShareName");
7272
73 if ( defined($conf->{BackupFilesExclude}{$t->{shareName}}) ) {73 if ( defined($conf->{BackupFilesExclude}{$t->{shareName}}) ) {
74 foreach my $file ( @{$conf->{BackupFilesExclude}{$t->{shareName}}} )74 foreach my $file2 ( @{$conf->{BackupFilesExclude}{$t->{shareName}}} ) {
75 {75 my $file = $file2;
76 $file = "./$2" if ( $file =~ m{^(\./+|/+)(.*)}s );76 $file = "./$2" if ( $file =~ m{^(\./+|/+)(.*)}s );
77 $file = encode($conf->{ClientCharset}, $file)77 $file = encode($conf->{ClientCharset}, $file)
78 if ( $conf->{ClientCharset} ne "" );78 if ( $conf->{ClientCharset} ne "" );
@@ -80,7 +80,8 @@
80 }80 }
81 }81 }
82 if ( defined($conf->{BackupFilesOnly}{$t->{shareName}}) ) {82 if ( defined($conf->{BackupFilesOnly}{$t->{shareName}}) ) {
83 foreach my $file ( @{$conf->{BackupFilesOnly}{$t->{shareName}}} ) {83 foreach my $file2 ( @{$conf->{BackupFilesOnly}{$t->{shareName}}} ) {
84 my $file = $file2;
84 $file = $2 if ( $file =~ m{^(\./+|/+)(.*)}s );85 $file = $2 if ( $file =~ m{^(\./+|/+)(.*)}s );
85 $file = "./$file";86 $file = "./$file";
86 $file = encode($conf->{ClientCharset}, $file)87 $file = encode($conf->{ClientCharset}, $file)
8788
=== modified file 'lib/BackupPC/Zip/FileMember.pm' (properties changed: +x to -x)
--- lib/BackupPC/Zip/FileMember.pm 2010-11-21 14:59:53 +0000
+++ lib/BackupPC/Zip/FileMember.pm 2011-09-19 08:47:26 +0000
@@ -33,7 +33,7 @@
33#33#
34#========================================================================34#========================================================================
35#35#
36# Version 3.2.0, released 31 Jul 2010.36# Version 3.2.1, released 24 Apr 2011.
37#37#
38# See http://backuppc.sourceforge.net.38# See http://backuppc.sourceforge.net.
39#39#

Subscribers

People subscribed via source and target branches