ceph/qa/workunits/mon/osd.sh
Sage Weil 640e5fdebc qa: simple tests for 'ceph osd create|rm' commands
Signed-off-by: Sage Weil <sage@inktank.com>
2012-07-27 10:43:26 -07:00

25 lines
328 B
Bash
Executable File

#!/bin/sh -x
set -e
ua=`uuidgen`
ub=`uuidgen`
# shoudl get same id with same uuid
na=`ceph osd create $ua`
test $na -eq `ceph osd create $ua`
nb=`ceph osd create $ub`
test $nb -eq `ceph osd create $ub`
test $nb -ne $na
ceph osd rm $na
ceph osd rm $na
ceph osd rm $nb
ceph osd rm 123123
na2=`ceph osd create $ua`
echo OK