mirror of
https://github.com/ceph/ceph
synced 2024-12-23 03:44:23 +00:00
8 lines
175 B
Bash
8 lines
175 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
command="/usr/lib/ltp/testcases/bin/fsstress -d fsstress-`hostname`$$ -l 1 -n 1000 -p 10"
|
||
|
|
||
|
echo "Starting fsstress $command"
|
||
|
mkdir fsstress`hostname`-$$
|
||
|
$command
|