From dfc18a7b4e9557a48a2c9dad5637146206e03a07 Mon Sep 17 00:00:00 2001 From: Mathias Klette Date: Tue, 16 Apr 2013 17:22:33 +0200 Subject: [PATCH] liveboot_rsync: use filters and new rsync module for production --- liveboot_rsync.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/liveboot_rsync.sh b/liveboot_rsync.sh index ba393fd..2240bc7 100755 --- a/liveboot_rsync.sh +++ b/liveboot_rsync.sh @@ -11,7 +11,7 @@ export # Define default settings # RSYNC_SRC=/srv/mirror/liveboot -RSYNC_FILTER='' +RSYNC_FILTER='--include=liveboot-* --include=pending-approval --exclude=*' # # destination patterns, must contain username and path and trailing slash, aka $USER@$HOST/$PATH/ @@ -25,7 +25,7 @@ RSYNC_DST3="liveboot@10.254.1.1/liveboot/" # staging (mgmt9) RSYNC_DST4="liveboot@10.252.1.1/liveboot/" # dc1+2 (mgmt1) -RSYNC_DST5="liveboot@10.1.1.1/liveboot/" +RSYNC_DST5="liveboot@10.1.1.1/liveboot-dcmanager/" ping_and_rsync() { # @@ -33,7 +33,7 @@ ping_and_rsync() { # if ping -c 1 $(echo $1 | sed -s 's#.*@\(.*\)/.*/#\1#' ) > /dev/null ; then echo "Now rsyncing results to $1 ..." - rsync --password-file /etc/rsynclivebuild-send.pass -avv --delete --delete-excluded $RSYNC_FILTER $RSYNC_SRC/ rsync://$1 + rsync --password-file /etc/rsynclivebuild-send.pass -avv --delete $RSYNC_FILTER $RSYNC_SRC/ rsync://$1 figlet "$2 OK" else echo "Warning: $1 down." -- 2.39.5