zfsonlinux/zfs-debian-pve/tree/zfsutils/usr/lib/os-probes/10zvol-test

15 lines
216 B
Plaintext
Raw Normal View History

2015-01-10 17:51:28 +03: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