#/etc/backuppc/win9x.pl

#This file should be included in all Windows 9X host config files to set
#the defaults.  This file will override all settings in the config.pl
#file, except those in the "General server configuration" section.
#Note that each host can override these settings in its own config file.

#See config.pl for an explanation of the options.


# Set number of days minus .03 between full backups, or -1 to only do
# manual backups, or -2 to suspend all backups.
$Conf{FullPeriod} = 6.97;

# This method requires c:\ to be shared as C$.
# Optionally update the path to the auth file, /etc/backuppc/win9x.auth.
$Conf{XferMethod} = 'smb';
$Conf{SmbShareName} = 'c$';

$Conf{SmbClientFullCmd} = '$smbClientPath \\\\$host\\$shareName '
            . ' $I_option -A /etc/backuppc/win9x.auth -E -d 1'
            . ' -c tarmode\\ full -Tc$X_option - $fileList';
$Conf{SmbClientIncrCmd} = '$smbClientPath \\\\$host\\$shareName'
            . ' $I_option -A /etc/backuppc/win9x.auth -E -N -d 1'
            . ' -c tarmode\\ full -TcN$X_option $timeStampFile - $fileList';
$Conf{SmbClientRestoreCmd} = '$smbClientPath \\\\$host\\$shareName'
            . ' $I_option -A /etc/backuppc/win9x.auth -E -N -d 1'
            . ' -c tarmode\\ full -Tx -';

# Select either files to archive or files to exclude.
$Conf{BackupFilesOnly} = undef;
$Conf{BackupFilesExclude} = ['\_RESTORE', '\WINDOWS\TEMP', '\WINDOWS\Temporary Internet Files\Content.IE5', '\WINDOWS\WIN386.SWP', '\Windows Upate Setup Files', '\WUTemp'];

$Conf{PingMaxMsec} = 20;

# Set number of days minus .03 between incremental backups.
$Conf{IncrPeriod} = 0.97;

# Number of full backups to keep (see config.pl for description).
$Conf{FullKeepCnt} = [4, 2, 2, 2, 2];

# Set number of days to warn if no backups have been made.
$Conf{EMailNotifyOldBackupDays} = 7.0;
