blob: ac4006b8627e7086afdf67153e62fa138dd3e58b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# We depend on udev-rules being loaded
[ "$1" = "-d" ] && exit 0
# Verify the zfs tool chain
which zpool >/dev/null 2>&1 || exit 1
which zfs >/dev/null 2>&1 || exit 1
exit 0
|