Skip to content

Commit 694ac70

Browse files
committed
Merge pull request #194 from github/verbose-rsync
We want rsync to be verbose when using ghe-backup -v
2 parents 6ec2ab9 + 14aac23 commit 694ac70

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

share/github-backup-utils/ghe-backup-alambic-cluster

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ for hostname in $hostnames; do
7777
echo "* Transferring storage files ..." 1>&3
7878

7979
# Transfer all data from the user data directory using rsync.
80-
ghe-rsync -az \
80+
ghe-rsync -avz \
8181
-e "ssh -q $opts -p 122 -F $config_file -l $user" \
8282
--rsync-path='sudo -u git rsync' \
8383
$link_dest \

share/github-backup-utils/ghe-backup-pages-cluster

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ for hostname in $hostnames; do
7777
echo "* Transferring pages files ..." 1>&3
7878

7979
# Transfer all data from the user data directory using rsync.
80-
ghe-rsync -az \
80+
ghe-rsync -avz \
8181
-e "ssh -q $opts -p 122 -F $config_file -l $user" \
8282
--rsync-path='sudo -u git rsync' \
8383
$link_dest \

share/github-backup-utils/ghe-backup-repositories-cluster

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ rsync_repository_data () {
161161
host=$(ssh_host_part "$1")
162162

163163
shift
164-
ghe-rsync -a \
164+
ghe-rsync -av \
165165
-e "ssh -q $opts -p $port -F $config_file -l $user" \
166166
$link_dest "$@" \
167167
--rsync-path='sudo -u git rsync' \

0 commit comments

Comments
 (0)