summaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorSage Weil <sage@inktank.com>2013-05-13 17:17:43 -0700
committerSage Weil <sage@inktank.com>2013-05-13 17:17:43 -0700
commit45e19510a3c9d88333e7c0c3cfeaf30f6e67161b (patch)
tree0481a75b7d21eeeb78769dd99d873316dbe9d1eb /qa
parent393140e77d46724e62378eec1902da3b97901679 (diff)
parent72bf5f4813c273210b5ced7f7793bc1bf813690c (diff)
downloadceph-45e19510a3c9d88333e7c0c3cfeaf30f6e67161b.tar.gz
Merge remote-tracking branch 'gh/next'
Diffstat (limited to 'qa')
-rwxr-xr-xqa/workunits/misc/multiple_rsync.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/qa/workunits/misc/multiple_rsync.sh b/qa/workunits/misc/multiple_rsync.sh
index 945eb8186c8..707a4b2341a 100755
--- a/qa/workunits/misc/multiple_rsync.sh
+++ b/qa/workunits/misc/multiple_rsync.sh
@@ -1,13 +1,13 @@
#!/bin/sh -ex
-rsync -av /usr/ usr.1
-rsync -av /usr/ usr.2
+rsync -av --exclude local/ /usr/ usr.1
+rsync -av --exclude local/ /usr/ usr.2
# this shouldn't transfer any additional files
echo we should get 4 here if no additional files are transfered
-rsync -auv /usr/ usr.1 | tee a
+rsync -auv --exclude local/ /usr/ usr.1 | tee a
wc -l a | grep 4
-rsync -auv /usr/ usr.2 | tee a
+rsync -auv --exclude local/ /usr/ usr.2 | tee a
wc -l a | grep 4
echo OK \ No newline at end of file