2011-07-10 19:57:33 +04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
. /etc/rc.conf
|
|
|
|
. /etc/rc.d/functions
|
|
|
|
|
2011-07-25 04:00:53 +04:00
|
|
|
ZFS="@sbindir@/zfs"
|
|
|
|
ZPOOL="@sbindir@/zpool"
|
2011-08-23 02:58:54 +04:00
|
|
|
ZPOOL_CACHE="@sysconfdir@/zfs/zpool.cache"
|
2011-07-25 04:00:53 +04:00
|
|
|
|
2011-07-10 19:57:33 +04:00
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
stat_busy "Starting zfs"
|
|
|
|
|
|
|
|
if [ ! -c /dev/zfs ]; then
|
|
|
|
modprobe zfs
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
stat_fail
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Import ZFS pools (via cache file)
|
2011-07-25 04:00:53 +04:00
|
|
|
if [ -f $ZPOOL_CACHE ]; then
|
|
|
|
$ZPOOL import -c $ZPOOL_CACHE -aN 2>/dev/null
|
2011-07-10 19:57:33 +04:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
stat_fail
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Mount ZFS filesystems
|
2011-07-25 04:00:53 +04:00
|
|
|
$ZFS mount -a
|
2011-07-10 19:57:33 +04:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
stat_fail
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Export ZFS flesystems
|
2011-07-25 04:00:53 +04:00
|
|
|
$ZFS share -a
|
2011-07-10 19:57:33 +04:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
stat_fail
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
add_daemon zfs
|
|
|
|
stat_done
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
stat_busy "Stopping zfs"
|
2011-07-25 04:00:53 +04:00
|
|
|
$ZFS umount -a
|
2011-07-10 19:57:33 +04:00
|
|
|
rm_daemon zfs
|
|
|
|
stat_done
|
|
|
|
;;
|
|
|
|
restart)
|
|
|
|
$0 stop
|
|
|
|
$0 start
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "usage: $0 {start|stop|restart}"
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|