# Configuration files for jBackup v1.0 # Usage: jbackup [config_file] # uses configuration file ~/.jbackup by default # You may override the configuration file by setting DOTJBACKUP or # providing a filename # # jBackup is Free Software licensed under the terms of the GNU General # Public License, version 3 # # comments are delimited by # # # this file is a shell-script that is sourced by the parse_file function # you may insert functions and commands into this file # # directories to back up DIRECTORIES=() # any single files FILES=() # device to mount on $DESTINATION DISK='' # rsync program if [[ -x `which rsync` ]];then RSYNC=`which rsync` else exit 1 fi # destination is the mount-point of the $DISK DESTINATION= # any flags to pass to rsync # I suggest -tavz RS_FLAGS=(--delete -vzrltgoD --modify-window=1) ## Local variables: # ## mode:sh # ## End: #