mirror of
https://github.com/ceph/ceph
synced 2025-02-08 19:38:47 +00:00
We're seeing the lsof invocation fail (as not found) in testing and nobody can identify why. Since attempting to reproduce the issue has not worked, this patch will gather data from a genuinely in-vitro location. Signed-off-by: Greg Farnum <gfarnum@redhat.com>
13 lines
142 B
Bash
Executable File
13 lines
142 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
wget http://ceph.com/qa/fsync-tester.c
|
|
gcc fsync-tester.c -o fsync-tester
|
|
|
|
./fsync-tester
|
|
|
|
echo $PATH
|
|
whereis lsof
|
|
lsof
|