From: Greg Farnum Date: Tue, 21 Oct 2014 17:55:06 +0000 (-0700) Subject: qa: use sudo when rsyncing /usr so we can read everything X-Git-Tag: v0.88~48 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fa07c04231db2d130de54647957ffab4a7a53733;p=ceph.git qa: use sudo when rsyncing /usr so we can read everything Signed-off-by: Greg Farnum --- diff --git a/qa/workunits/fs/misc/multiple_rsync.sh b/qa/workunits/fs/misc/multiple_rsync.sh index 089db63d5e41..61ee28317049 100755 --- a/qa/workunits/fs/misc/multiple_rsync.sh +++ b/qa/workunits/fs/misc/multiple_rsync.sh @@ -8,7 +8,7 @@ echo we should get 4 here if no additional files are transfered rsync -auv --exclude local/ /usr/ usr.1 | tee /tmp/$$ hexdump -C /tmp/$$ wc -l /tmp/$$ | grep 4 -rsync -auv --exclude local/ /usr/ usr.2 | tee /tmp/$$ +sudo rsync -auv --exclude local/ /usr/ usr.2 | tee /tmp/$$ hexdump -C /tmp/$$ wc -l /tmp/$$ | grep 4 rm /tmp/$$