mirror of
https://github.com/ceph/ceph
synced 2024-12-11 22:18:18 +00:00
10 lines
176 B
Bash
10 lines
176 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
bonnie_bin=`which bonnie++`
|
||
|
[ $? -eq 1 ] && bonnie_bin=/usr/sbin/bonnie++
|
||
|
|
||
|
uid_flags=""
|
||
|
[ "`id -u`" == "0" ] && uid_flags="-u root"
|
||
|
|
||
|
$bonnie_bin $uid_flags -n 100
|