Files
mirror_zfs/cmd/zpool/zpool.d/dm-deps
T

28 lines
654 B
Bash
Raw Normal View History

2017-04-21 09:27:04 -07:00
#!/bin/sh
#
2020-06-10 17:07:59 -07: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 09:27:04 -07:00
#
if [ "$1" = "-h" ] ; then
2020-06-10 17:07:59 -07:00
echo "Show device mapper dependent (underlying) devices."
2017-04-21 09:27:04 -07:00
exit
fi
dev="$VDEV_PATH"
# If the VDEV path is a symlink, resolve it to a real device
if [ -L "$dev" ] ; then
dev=$(readlink "$dev")
fi
dev="${dev##*/}"
2017-04-21 09:27:04 -07:00
val=""
if [ -d "/sys/class/block/$dev/slaves" ] ; then
# 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 09:27:04 -07:00
fi
2020-06-10 17:07:59 -07:00
echo "dm-deps=$val"