mirror of https://github.com/ceph/ceph
9 lines
108 B
Bash
9 lines
108 B
Bash
|
#!/bin/sh -ex
|
||
|
|
||
|
# Hang forever for manual testing using the thrasher
|
||
|
while(true)
|
||
|
do
|
||
|
sleep 300
|
||
|
done
|
||
|
exit 0
|