Is it possible to backup Novell servers with Backuppc? Scott Gamble _______________________________ [EMAIL PROTECTED] [EMAIL PROTECTED] 206 412 3055
In my config file of host 127.0.0.1 I got these lines:
$Conf{TarShareName} = '/home/e-smith/files/users';
#Â Â Â $Conf{BackupFilesExclude} = '/temp';
#Â Â Â $Conf{BackupFilesExclude} = ['/temp'];Â Â Â Â # same as first example
#Â Â Â $Conf{Bac
kupFilesExclude} = ['/temp', '/winnt/tmp'];
#Â Â Â $Conf{BackupFilesExclude} = {
#      'c' => ['/temp', '/winnt/tmp'],        # these are for 'c' share
#Â Â Â Â Â Â 'd' => ['/junk', '/dont_back_this_up'], # these are for 'd' share
#Â Â Â };
#
$Conf{BackupFilesExclude} = '/home/e-smith/files/users/user1/home';
$Conf{XferMethod} = 'tar';
$Conf{TarClientCmd} =
'/usr/bin/sudo'
                   . ' $tarPath -c -v -f - -C $shareName'
                   . ' --totals';
I want to backup my '/home/e-smith/files/users' directory, BUT I want to exclude the Home Directory's
in the backup of all the users, is this possible?
The line I use now doesn't work, in my backup the Home Directory of user1 is still in the backup.
Can someone tell me what I have to use in my config file(s) to backup:
'/home/e-smith/files/users/'
and exclude the Home Directory's of all the users:
'/home/e-smith/files/users/*/home'
or at least one of my users, like so:
'/home/e-smith/files/users/user1/home'
Regards,
Molski