2011-09-01 00:41:12 +00:00
|
|
|
#!/bin/sh -ex
|
|
|
|
|
2014-11-07 01:48:01 +00:00
|
|
|
sudo rsync -av --exclude local/ /usr/ usr.1
|
|
|
|
sudo rsync -av --exclude local/ /usr/ usr.2
|
2011-09-01 00:41:12 +00:00
|
|
|
|
|
|
|
# this shouldn't transfer any additional files
|
|
|
|
echo we should get 4 here if no additional files are transfered
|
2014-11-07 01:48:01 +00:00
|
|
|
sudo rsync -auv --exclude local/ /usr/ usr.1 | tee /tmp/$$
|
2013-06-27 05:11:07 +00:00
|
|
|
hexdump -C /tmp/$$
|
|
|
|
wc -l /tmp/$$ | grep 4
|
2014-10-21 17:55:06 +00:00
|
|
|
sudo rsync -auv --exclude local/ /usr/ usr.2 | tee /tmp/$$
|
2013-06-27 05:11:07 +00:00
|
|
|
hexdump -C /tmp/$$
|
|
|
|
wc -l /tmp/$$ | grep 4
|
|
|
|
rm /tmp/$$
|
2011-09-01 00:41:12 +00:00
|
|
|
|
2014-11-07 01:48:01 +00:00
|
|
|
echo OK
|