############################################################################################################ # CRB ( Cpanel Rsync Backup ) Version 0.1b Author: Fernando Morgenstern # ############################################################################################################ # # # The license of this software is located at the same directory of this program. Please read the LICENSE # # before you make copies or distribute this software. # # # ############################################################################################################ # Backup server hostname BSERVER='host.example.org'; # Backup user. If you are planning to run script via cron, you have to set password-less login for this user. BSERVER_USER='root'; # SSH port, usually 22 BSERVER_SSH_PORT='22'; # Cpanel file where usernames are stored USERFILES='/etc/trueuserdomains'; # How many full backups would you like to store? NUMBER_DAYS=5; # Base backup dir on remote server. Note that this script will use $BASEDIR/backup/ BASEDIR='/home/backup/'; # Want to exclude something when running rsync? RSYNC_OPTIONS='--exclude virtfs';