# Name of the top-level directory to place backup in # (usually the name of the host being backed up) REMOTE_BACKUP_DIR="myRiskyLaptop" # SSH style remote host and username ex. leopold@remotehost.dk REMOTE_HOST=leopold@backuphost.dk # List of (local) directories to backup separated by space DIRS_TO_BACKUP="/home /etc /root /var/mail /var/log" # Number of rsync "snapshots" to store on remote host BACKUP_SAVE_DIRS=10 # Extra arguments for rsync # -z request compression # --bwlimit=10 request a 10 kbps bandwidth limit # --progress show progress during xfer RSYNC_ARGS="-z --progress" # Path to rsync RPATH (on remote host) LPATH (on localhost) LPATH="/usb/bin" RPATH="/usr/bin" # Path to "mv" and "cp" RBIN (on remote host) LBIN (on localhost) RBIN="/bin" LBIN="/bin" # Execute prior to backup process PRE_CMD="" # Execute after the backup process POST_CMD=""