On 20/09/2007, Samuel Krieg <[EMAIL PROTECTED]> wrote:
> I dreamt I could do something like this in the client config file:
> $Conf{BackupFilesExclude} = push ( $Conf{BackupFilesExclude},
> '/home/excludeme' );
Yes, of course you can. But the syntax is more like this:
push @{$Conf{BackupFilesExclude}}, '/home/excludeme';
The trick is to dereference the array object before passing it to push,
since push requires an actual array as its first argument.
--
cheers,
-ambrose
Yahoo and Gmail must die. Yes, I use them, but they still must die.
PS: Don't trust everything you read in Wikipedia. (Very Important)
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
BackupPC-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/