mirror of
https://github.com/ceph/ceph
synced 2024-12-17 08:57:28 +00:00
ce0e3bd188
These were probably just obscuring other failures. Reviewed-by: Sage Weil <sage@inktank.com> Signed-off-by: John Spray <john.spray@inktank.com>
14 lines
186 B
Bash
Executable File
14 lines
186 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
ceph mds set allow_new_snaps true --yes-i-really-mean-it
|
|
|
|
touch foo
|
|
chmod +x foo
|
|
mkdir .snap/s
|
|
find .snap/s/foo -executable | grep foo
|
|
rmdir .snap/s
|
|
rm foo
|
|
|
|
echo OK |