mirror of
https://github.com/ceph/ceph
synced 2024-12-22 11:31:55 +00:00
9e4adf0de9
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
11 lines
244 B
Bash
Executable File
11 lines
244 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
wget -q http://ceph.newdream.net/qa/linux-2.6.33.tar.bz2
|
|
mkdir foo
|
|
cp linux* foo
|
|
mkdir foo/.snap/barsnap
|
|
rm foo/linux*
|
|
diff -q foo/.snap/barsnap/linux* linux* && echo "passed: files are identical"
|
|
rmdir foo/.snap/barsnap
|
|
echo OK
|