1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
#
# Backup Copy Sample Configuration File
#
# This is a sample Config file. Please make appropraite changes before using!
#
# From now on:
#
# 1 = on
# 0 = off
# Recursive Copy
RECURSIVE 1
# Verbose Mode
VERBOSE 1
# Find Mode
FIND 0
# Quite Mode - Suppress all error message
QUIET 1
# New Files Only Mode
NEWONLY 1
# File Time Comparison delay
SECONDSCHK 0
# Inode information file comparison checking.
INODECHK 0
# File size comparison checking.
SIZECHK 1
# Trashbin Options
TRASHBIN 0
TRASHBINDIR /path/to/trashbin
# Source
#
# Note - Only one source argument maybe used with config file.
#
SOURCE /none
# Destination
DEST /none2
# Exclude Directories
# List each directory on an individual line below the EXCLUDEDIR line
# and before the END line
EXCLUDEDIR 0
/root/
/root/.ssh
END
# Save Excluded Directores
# If this option is set to 1, then directores excluded from an incremental
# backup will not be removed from the backup.
SAVEEXCDIR 1
|