mirror of
https://github.com/ceph/ceph
synced 2024-12-13 06:57:21 +00:00
670a14827a
It needs to be a valid osd id that we try to remove (that doesn't exist). Signed-off-by: Sage Weil <sage@inktank.com>
25 lines
326 B
Bash
Executable File
25 lines
326 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 1000
|
|
|
|
na2=`ceph osd create $ua`
|
|
|
|
echo OK
|
|
|