mirror of
https://github.com/ceph/ceph
synced 2024-12-20 10:23:24 +00:00
ca97fae81f
Test that it works in snaptest-0.sh, and set the flag in all the snap workunits so they continue to function. Signed-off-by: Greg Farnum <greg@inktank.com> Reviewed-by: Loic Dachary <loic@dachary.org>
36 lines
444 B
Bash
Executable File
36 lines
444 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
ceph mds set allow_new_snaps --yes-i-really-mean-it
|
|
|
|
git clone git://ceph.com/git/ceph.git
|
|
cd ceph
|
|
|
|
versions=`seq 1 21`
|
|
|
|
for v in $versions
|
|
do
|
|
ver="v0.$v"
|
|
echo $ver
|
|
git reset --hard $ver
|
|
mkdir .snap/$ver
|
|
done
|
|
|
|
for v in $versions
|
|
do
|
|
ver="v0.$v"
|
|
echo checking $ver
|
|
cd .snap/$ver
|
|
git diff --exit-code
|
|
cd ../..
|
|
done
|
|
|
|
for v in $versions
|
|
do
|
|
ver="v0.$v"
|
|
rmdir .snap/$ver
|
|
done
|
|
|
|
echo OK
|