Dan Johansson wrote at about 17:25:56 +0100 on Sunday, January 3, 2021:
 > Tanks for your Feedback!
 > 
 > On 03.01.21 16:19, backu...@kosowsky.org wrote:
 > > Dan Johansson wrote at about 14:24:25 +0100 on Sunday, January 3, 2021:
 > >   > On 30.06.20 06:51, backu...@kosowsky.org wrote:
 > >   > > Over the years, many have asked and struggled with backing up remote
 > >   > > Windows shares with shadow copies. Shadow copies are useful since 
 > > they
 > >   > > allow both the backup to be 'consistent' and allow for reading files
 > >   > > that are otherwise 'busy' and unreadable when part of active Windows
 > >   > > partitions.
 > >   > >
 > > 
 > >   > I found this old email with the attached script.
 > >   > I have tried to set it up, but sadly I can not get it to work. (:-(
 > > 
 > > Some details would be helpful...
 > > 
 > >>
 > >   > So now I have two questions.
 > >   >
 > >   > a) What is the syntax of the "Conf{ClientShareName2Path}" hash? 
 > > Examples?
 > > 
 > > $Conf{ClientShareName2Path} = {
 > >      'backuppc' => '/var/lib/backuppc',
 > >      'boot-efi' => '/boot/efi',
 > >      'home'     => '/home',
 > >      'root'     => '/',
 > > };
 > > 
 > 
 > That looks like "Linux" paths and not "Windows" (i.e. C:\) paths.
 > How would "Windows" paths be defined?
 > 
 > $Conf{ClientShareName2Path} = {
 >       'C' => 'C:\\',
 > };
 > 
 > -- or maybe --
 > 
 > $Conf{ClientShareName2Path} = {
 >       'C' => '/tmp/shadows/C',
 > };
 > ?
 > 

Ooops.... sorry you are right... that is for my btrfs snapshot script
which I use on Linux - that does the analogous thing of VSS on
Windoze.

$Conf{ClientShareName2Path} = {
    'c' => '/c',
    'd' => '/d',
    'e' => '/e',
#    'g' => '/g/',
};



_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    https://github.com/backuppc/backuppc/wiki
Project: https://backuppc.github.io/backuppc/

Reply via email to