[BackupPC-users] BackupPC 3 load

2007-02-15 Thread Nils Breunese (Lemonbit)
Hello, I recently upgraded to BackupPC 3 and although the idea of being able to run the nightly jobs, the trashClean job and dump jobs all at the same time is nice it seems it's a bit too much for our server (load = 10 at the moment). Can I make backup runs and nightly jobs mutually

Re: [BackupPC-users] GUI error after upgrade

2007-02-15 Thread Filipe
Hi. I've upgraded from 2.1.1 to 3.0.0 like you, and some problems arise.. First it was the error about the language, and resolved it by renaming /etc/backuppc and reinstalling the 3.0.0 version then some errors appeared when backing up hosts, and the web interface edit configuration does not

Re: [BackupPC-users] GUI error after upgrade

2007-02-15 Thread Ludovic Drolez
Craig Barratt wrote: I do have a question: for your 2.x package you hardcoded the config paths. In 3.x the FHS mode places the config files in places similar to your 2.x package - but not exactly the same. That's why people that started with your 2.x debian package and then upgraded

Re: [BackupPC-users] SSH config problemcausingfileListReceivefailed?

2007-02-15 Thread Arch Willingham
The backuppc server is machine2. I.E. it is trying to backup itself. I ran that first command you gave me and it gave a weird message The authenticity of machine2 can't be established. RSA key fingerprint is blah, blah, blah. Are you sure you want to continue connecting? Please type yes or

Re: [BackupPC-users] SSH config problemcausingfileListReceivefailed?

2007-02-15 Thread Ralf Gross
Arch Willingham schrieb: The backuppc server is machine2. I.E. it is trying to backup itself. I ran that first command you gave me and it gave a weird message The authenticity of machine2 can't be established. RSA key fingerprint is blah, blah, blah. Are you sure you want to continue

[BackupPC-users] variable substitution

2007-02-15 Thread Brien Dieterle
How can I get this to work? I am storing the data inside lasttime.txt (don't ask why) :-) $Conf{TarIncrArgs} = '--newer=`cat lasttime.txt` $fileList+'; the shell command within ` ` does not get executed, so of course this doesn't work at all. Any ideas? Thanks! Brien

Re: [BackupPC-users] variable substitution

2007-02-15 Thread Jason Hughes
Perl likes this: $string = 'Hello ' . `executethis` . ' test\n'; You probably want to surround the whole string in single quotes, but use dot-concatenation to string the pieces of command together. I didn't try what you have below, but I did notice that backticks weren't being executed if

[BackupPC-users] rsyncp problem --prune-empty-dirs

2007-02-15 Thread Bernhard Ott
Hi, there seems to be a problem using the rsync --prune-empty-dirs (-m) option with backuppc (see log-file/config). The rsync command/options works with all clients invoked via shell (and, of course, without the -m option), but not via rsyncp. Seems like rsync reads all the directories and

Re: [BackupPC-users] variable substitution

2007-02-15 Thread Ambrose Li
On 15/02/07, Craig Barratt [EMAIL PROTECTED] wrote: BackupPC doesn't use a shell for executing these commands, so shell substitutions like `...` don't work. You can set $Conf{TarClientCmd} to execute a shell script that can do any argument processing you want. Actually `` are valid Perl

Re: [BackupPC-users] variable substitution

2007-02-15 Thread Ambrose Li
On 16/02/07, Ambrose Li [EMAIL PROTECTED] wrote: On 15/02/07, Craig Barratt [EMAIL PROTECTED] wrote: BackupPC doesn't use a shell for executing these commands, so shell substitutions like `...` don't work. You can set $Conf{TarClientCmd} to execute a shell script that can do any