mirror of
https://github.com/ceph/ceph
synced 2024-12-16 08:26:25 +00:00
3aae5ca6fd
/bin/bash is a Linuxism. Other operating systems install bash to different paths. Use /usr/bin/env in shebangs to find bash. Signed-off-by: Alan Somers <asomers@gmail.com>
16 lines
315 B
Bash
Executable File
16 lines
315 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "getting blogbench"
|
|
wget http://download.ceph.com/qa/blogbench-1.0.tar.bz2
|
|
#cp /home/gregf/src/blogbench-1.0.tar.bz2 .
|
|
tar -xvf blogbench-1.0.tar.bz2
|
|
cd blogbench*
|
|
echo "making blogbench"
|
|
./configure
|
|
make
|
|
cd src
|
|
mkdir blogtest_in
|
|
echo "running blogbench"
|
|
./blogbench -d blogtest_in
|