Files
zfsonlinux/debian/tree/zfsutils-linux/usr/lib/os-probes/10zvol-test
T

15 lines
216 B
Bash
Raw Normal View History

2019-01-30 15:26:24 +01:00
#!/bin/sh
# Sub-test to exclude ZVOLs
set -e
partition="$1"
. /usr/share/os-prober/common.sh
if [ "$(stat -L -c %t "$partition")" = "e6" ] ; then
debug "$1 is a ZVOL; skipping"
exit 0
fi
# No ZVOLs found
exit 1