mirror of
https://github.com/ceph/ceph
synced 2025-01-08 20:21:33 +00:00
183646c919
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
14 lines
192 B
Bash
Executable File
14 lines
192 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
ceph fs set cephfs 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 |