mirror of
https://github.com/ceph/ceph
synced 2025-01-09 20:52:09 +00:00
10 lines
176 B
Bash
Executable File
10 lines
176 B
Bash
Executable File
#!/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
|