Bug#650522:

2012-11-30 Thread Martin Gallant
This bus is still present in wheezy.

--
Marty


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#650522: backuppc: Patch

2012-11-01 Thread Jan Voelkers
Package: backuppc
Followup-For: Bug #650522

I am not a programmer and have no patchwritingexperience

The solution:
/usr/share/backuppc/lib/BackupPC/Lib.pm

1413c1413
 foreach my $param (qw(BackupFilesOnly BackupFilesExclude)) {
---
 foreach my $param qw(BackupFilesOnly BackupFilesExclude) {

/usr/share/backuppc/lib/BackupPC/Storage/Text.pm
302c302
 foreach my $param (qw(BackupFilesOnly BackupFilesExclude)) {
---
 foreach my $param qw(BackupFilesOnly BackupFilesExclude) {

Regards,

Jan
-- System Information:
Debian Release: wheezy/sid
  APT prefers testing-proposed-updates
  APT policy: (500, 'testing-proposed-updates'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-3-686-pae (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#650522: backuppc: Use of qw(...) as parentheses is deprecated

2012-01-03 Thread Steve Allison
The warnings can be suppressed by adding no warnings 'deprecated'; to 
the beginning on each file that has the qw(...) code.


This change can be scripted by running:
grep -ril 'qw(' /usr/share/backuppc/lib/BackupPC/|while read file; 
do sed -i 1i no warnings 'deprecated'; $file; done




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#650522:

2011-12-03 Thread Martin Gallant
Worked around this issue by inserting round parentheses around the
qw(...) stansas at the locations in the above report.

SMB failures turned out to be a configuration issue on my system, so
downgrading bug to NORMAL.

Thank you for maintaining this package



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#650522: backuppc: Use of qw(...) as parentheses is deprecated

2011-11-30 Thread Martin Gallant
Package: backuppc
Version: 3.2.1-2
Severity: important

I get these errors whenever running tarCreate/tarExtract
I think these started happening about 2 weeks ago after a perl upgrade

tarExtract: Use of qw(...) as parentheses is deprecated at
/usr/share/backuppc/lib/BackupPC/Storage/Text.pm line 302.
tarExtract: Use of qw(...) as parentheses is deprecated at
/usr/share/backuppc/lib/BackupPC/Lib.pm line 1413.


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-2-amd64 (SMP w/6 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages backuppc depends on:
ii  adduser3.113
ii  apache22.2.21-2
ii  apache2-mpm-worker [httpd] 2.2.21-2
ii  bzip2  1.0.5-7
ii  debconf [debconf-2.0]  1.5.41
ii  dpkg   1.16.1.2
ii  exim4  4.77-1
ii  exim4-daemon-light [mail-transport-agent]  4.77-1+b1
ii  iputils-ping   3:20101006-1+b1
ii  libarchive-zip-perl1.30-4
ii  libc6  2.13-21
ii  libcompress-zlib-perl  2.037-1
ii  libtime-modules-perl   2011.0517-1
ii  libwww-perl6.03-1
ii  perl [libdigest-md5-perl]  5.14.2-6
ii  samba-common-bin   2:3.6.1-2
ii  smbclient  2:3.6.1-2
ii  tar1.26-3
ii  ucf3.0025+nmu2

Versions of packages backuppc recommends:
ii  libfile-rsyncp-perl  0.68-1.1+b3
ii  libio-dirent-perl0.04-2+b3
ii  openssh-client [ssh-client]  1:5.9p1-2
ii  rrdtool  1.4.3-3.1+b3
ii  rsync3.0.9-1

Versions of packages backuppc suggests:
ii  google-chrome-beta [www-browser]  16.0.912.41-r110024
ii  lynx-cur [www-browser]2.8.8dev.9-2
ii  par2  0.4-11
ii  w3m [www-browser] 0.5.3-5

-- Configuration Files:
/etc/backuppc/config.pl changed:
$ENV{'PATH'} = '/bin:/usr/bin';
delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
$Conf{ServerHost} = 's3rv3r';
chomp($Conf{ServerHost});
$Conf{ServerPort} = '-1';
$Conf{ServerMesgSecret} = '';
$Conf{MyPath} = '/bin';
$Conf{UmaskMode} = '23';
$Conf{WakeupSchedule} = [
  '1',
  '2',
  '3',
  '4',
  '5',
  '6',
  '7',
  '8',
  '9',
  '10',
  '11',
  '12',
  '13',
  '14',
  '15',
  '16',
  '17',
  '18',
  '19',
  '20',
  '21',
  '22',
  '23'
];
$Conf{MaxBackups} = '4';
$Conf{MaxUserBackups} = '4';
$Conf{MaxPendingCmds} = '15';
$Conf{CmdQueueNice} = '10';
$Conf{MaxBackupPCNightlyJobs} = '2';
$Conf{BackupPCNightlyPeriod} = '1';
$Conf{MaxOldLogFiles} = '14';
$Conf{DfPath} = '/bin/df';
$Conf{DfCmd} = '$dfPath $topDir';
$Conf{SplitPath} = '/usr/bin/split';
$Conf{ParPath} = '/usr/bin/par2';
$Conf{CatPath} = '/bin/cat';
$Conf{GzipPath} = '/bin/gzip';
$Conf{Bzip2Path} = '/bin/bzip2';
$Conf{DfMaxUsagePct} = '95';
$Conf{TrashCleanSleepSec} = '300';
$Conf{DHCPAddressRanges} = [];
$Conf{BackupPCUser} = 'backuppc';
$Conf{TopDir} = '/var/lib/backuppc';
$Conf{ConfDir} = '/etc/backuppc';
$Conf{LogDir} = '/var/lib/backuppc/log';
$Conf{InstallDir} = '/usr/share/backuppc';
$Conf{CgiDir} = '/usr/share/backuppc/cgi-bin';
$Conf{BackupPCUserVerify} = '1';
$Conf{HardLinkMax} = '31999';
$Conf{PerlModuleLoad} = undef;
$Conf{ServerInitdPath} = undef;
$Conf{ServerInitdStartCmd} = '';
$Conf{FullPeriod} = '6.97';
$Conf{IncrPeriod} = '0.97';
$Conf{FullKeepCnt} = [
  '4',
  '2',
  '3'
];
$Conf{FullKeepCntMin} = '1';
$Conf{FullAgeMax} = '180';
$Conf{IncrKeepCnt} = '6';
$Conf{IncrKeepCntMin} = '1';
$Conf{IncrAgeMax} = '30';
$Conf{IncrLevels} = [
  '1'
];
$Conf{BackupsDisable} = '0';
$Conf{PartialAgeMax} = '3';
$Conf{IncrFill} = '0';
$Conf{RestoreInfoKeepCnt} = '10';
$Conf{ArchiveInfoKeepCnt} = '10';
$Conf{BackupFilesOnly} = {};
$Conf{BackupFilesExclude} = {};
$Conf{BlackoutBadPingLimit} = '3';
$Conf{BlackoutGoodCnt} = '7';
$Conf{BlackoutPeriods} = [];
$Conf{BackupZeroFilesIsFatal} = '1';
$Conf{XferMethod} = 'rsync';
$Conf{XferLogLevel} = '1';
$Conf{ClientCharset} = '';
$Conf{ClientCharsetLegacy} = 'iso-8859-1';
$Conf{SmbShareName} = [
  'C$'
];
$Conf{SmbShareUserName} = 'backup';
$Conf{SmbSharePasswd} = 'CSXwin2k';
$Conf{SmbClientPath} = '/usr/bin/smbclient';
$Conf{SmbClientFullCmd} = '$smbClientPath $host\\$shareName
$I_option -U $userName -E -d 1 -c tarmode\\ full -Tc$X_option -
$fileList';
$Conf{SmbClientIncrCmd} = '$smbClientPath $host\\$shareName
$I_option -U $userName -E -d 1 -c tarmode\\ full -TcN$X_option
$timeStampFile - $fileList';
$Conf{SmbClientRestoreCmd} = 

Bug#650522:

2011-11-30 Thread Martin Gallant
Marked this bus as important as this is currently blocking full
backup of my hosts via SMB.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org