mirror of
https://github.com/ceph/ceph
synced 2024-12-11 14:09:09 +00:00
f2aef3e1da
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
12 lines
128 B
Bash
Executable File
12 lines
128 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
touch foo
|
|
chmod +x foo
|
|
mkdir .snap/s
|
|
find .snap/s/foo -executable | grep foo
|
|
rmdir .snap/s
|
|
rm foo
|
|
|
|
echo OK |