mirror of
https://github.com/ceph/ceph
synced 2024-12-11 14:09:09 +00:00
ab2026952f
Currently passes the script, although running these steps manually (especially with smaller files) fails a fair percentage of the time for me.
11 lines
216 B
Bash
Executable File
11 lines
216 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
wget 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"
|