2017-04-21 19:27:04 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2020-06-11 03:07:59 +03:00
|
|
|
# Show device mapper dependent / underlying devices. This is useful for
|
|
|
|
# looking up the /dev/sd* devices associated with a dm or multipath device.
|
2017-04-21 19:27:04 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
if [ "$1" = "-h" ] ; then
|
2020-06-11 03:07:59 +03:00
|
|
|
echo "Show device mapper dependent (underlying) devices."
|
2017-04-21 19:27:04 +03:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2022-01-07 03:07:54 +03:00
|
|
|
# shellcheck disable=SC2154
|
2017-04-21 19:27:04 +03:00
|
|
|
dev="$VDEV_PATH"
|
|
|
|
|
|
|
|
# If the VDEV path is a symlink, resolve it to a real device
|
|
|
|
if [ -L "$dev" ] ; then
|
|
|
|
dev=$(readlink "$dev")
|
|
|
|
fi
|
|
|
|
|
2021-11-11 23:27:37 +03:00
|
|
|
dev="${dev##*/}"
|
2017-04-21 19:27:04 +03:00
|
|
|
val=""
|
|
|
|
if [ -d "/sys/class/block/$dev/slaves" ] ; then
|
2021-11-11 23:27:37 +03:00
|
|
|
# ls -C: output in columns, no newlines, two spaces (change to one)
|
|
|
|
# shellcheck disable=SC2012
|
|
|
|
val=$(ls -C "/sys/class/block/$dev/slaves" | tr -s '[:space:]' ' ')
|
2017-04-21 19:27:04 +03:00
|
|
|
fi
|
|
|
|
|
2020-06-11 03:07:59 +03:00
|
|
|
echo "dm-deps=$val"
|