mirror of
https://github.com/ceph/ceph
synced 2024-12-11 14:09:09 +00:00
d9e902f9c5
wiki url -> docs url
11 lines
235 B
Bash
Executable File
11 lines
235 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
wget -q http://ceph.com/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
|