mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
1a2e6a635f
This regression was accidentally introduced by commit aa2b489
.
I was attempting to simplify the init scripts and accidentally
confused the /etc/init.d and /etc/zfs paths. This change reverts
the init script modifications.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #370
63 lines
986 B
Bash
63 lines
986 B
Bash
#!/bin/bash
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
|
|
ZFS="@sbindir@/zfs"
|
|
ZPOOL="@sbindir@/zpool"
|
|
ZPOOL_CACHE="@sysconfdir@/zfs/zpool.cache"
|
|
|
|
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)
|
|
if [ -f $ZPOOL_CACHE ]; then
|
|
$ZPOOL import -c $ZPOOL_CACHE -aN 2>/dev/null
|
|
if [ $? -ne 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# Mount ZFS filesystems
|
|
$ZFS mount -a
|
|
if [ $? -ne 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
|
|
# Export ZFS flesystems
|
|
$ZFS share -a
|
|
if [ $? -ne 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
|
|
add_daemon zfs
|
|
stat_done
|
|
;;
|
|
stop)
|
|
stat_busy "Stopping zfs"
|
|
$ZFS umount -a
|
|
rm_daemon zfs
|
|
stat_done
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "usage: $0 {start|stop|restart}"
|
|
esac
|
|
|
|
exit 0
|