summaryrefslogtreecommitdiffstats
path: root/qa/workunits/mon/osd.sh
blob: 535d6c137912709fe334a190024fddf4e608b6a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh -x

set -e

ua=`uuidgen`
ub=`uuidgen`

# should 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 1000

na2=`ceph osd create $ua`

echo OK