diff options
author | Sage Weil <sage@inktank.com> | 2013-05-13 17:17:43 -0700 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-05-13 17:17:43 -0700 |
commit | 45e19510a3c9d88333e7c0c3cfeaf30f6e67161b (patch) | |
tree | 0481a75b7d21eeeb78769dd99d873316dbe9d1eb /qa | |
parent | 393140e77d46724e62378eec1902da3b97901679 (diff) | |
parent | 72bf5f4813c273210b5ced7f7793bc1bf813690c (diff) | |
download | ceph-45e19510a3c9d88333e7c0c3cfeaf30f6e67161b.tar.gz |
Merge remote-tracking branch 'gh/next'
Diffstat (limited to 'qa')
-rwxr-xr-x | qa/workunits/misc/multiple_rsync.sh | 8 |
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 |