mirror of
https://github.com/ceph/ceph
synced 2024-12-25 04:43:17 +00:00
b98b104829
tr is not present by default in Dracut generated initramfs images. The same logic can anyhow be performed via the existing sed call. Signed-off-by: David Disseldorp <ddiss@suse.de>
13 lines
275 B
Bash
Executable File
13 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DEV=$1
|
|
NUM=`echo $DEV | sed 's#p.*##g; s#[a-z]##g'`
|
|
POOL=`cat /sys/devices/rbd/$NUM/pool`
|
|
IMAGE=`cat /sys/devices/rbd/$NUM/name`
|
|
SNAP=`cat /sys/devices/rbd/$NUM/current_snap`
|
|
if [ "$SNAP" = "-" ]; then
|
|
echo -n "$POOL $IMAGE"
|
|
else
|
|
echo -n "$POOL $IMAGE@$SNAP"
|
|
fi
|