mirror of
https://github.com/ceph/ceph
synced 2024-12-13 23:17:07 +00:00
d4cc161566
Clean up remaining traces of automake's .libs. This makes unittest_* tests easier to run by hand (mostly). Signed-off-by: Sage Weil <sage@redhat.com>
9 lines
245 B
Bash
Executable File
9 lines
245 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
pool=rbd
|
|
image=my-image
|
|
size=10G
|
|
export LD_LIBRARY_PATH=../../build/lib
|
|
#qemu-img create -f raw rbd:$pool/$image:conf=../../src/ceph.conf $size
|
|
qemu-img convert linux-0.2.img -O raw rbd:$pool/$image:conf=../../src/ceph.conf
|