24 lines
619 B
Text
24 lines
619 B
Text
|
#
|
||
|
# the egrsync configuration file...
|
||
|
#
|
||
|
# directories to mirror on this machine...
|
||
|
DIRS="/etc /home /root /var"
|
||
|
#
|
||
|
# directories or files (patterns) to exclude...
|
||
|
EXCLUDE="archive .xsession-errors *~ Cache* cache* home/dlane-orig
|
||
|
home/music home/server"
|
||
|
#
|
||
|
# rsync arguments...
|
||
|
FLAGS="--archive -e ssh --delete --stats"
|
||
|
#
|
||
|
# base directory into which to copy the rsync'd stuff
|
||
|
BASEDIR=/storage/millhouse/
|
||
|
#
|
||
|
# machine to copy from
|
||
|
SERVER=millhouse
|
||
|
#
|
||
|
# user on SERVER - NOTE: this assumes that this user has the
|
||
|
# right to access the necessary info on the server, and has
|
||
|
# password-less login access via ssh...
|
||
|
USER=root
|