Files
mirror_zfs/etc/init.d/zfs.lsb.in
T

131 lines
2.7 KiB
Bash
Raw Normal View History

2011-03-17 15:02:28 -07:00
#!/bin/bash
#
# zfs This script will mount/umount the zfs filesystems.
#
# chkconfig: 2345 01 99
# description: This script will mount/umount the zfs filesystems during
# system boot/shutdown. Configuration of which filesystems
# should be mounted is handled by the zfs 'mountpoint' and
# 'canmount' properties. See the zfs(8) man page for details.
# It is also responsible for all userspace zfs services.
#
### BEGIN INIT INFO
# Provides: zfs
# Required-Start: $local_fs
# Required-Stop: $local_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
2011-03-17 15:02:28 -07:00
# Should-Stop:
# Short-Description: Mount/umount the zfs filesystems
# Description: ZFS is an advanced filesystem designed to simplify managing
# and protecting your data. This service mounts the ZFS
# filesystems and starts all related zfs services.
### END INIT INFO
# Source function library.
. /lib/lsb/init-functions
LOCKFILE=/var/lock/zfs
ZFS="@sbindir@/zfs"
ZPOOL="@sbindir@/zpool"
2011-08-22 15:58:54 -07:00
ZPOOL_CACHE="@sysconfdir@/zfs/zpool.cache"
2011-03-17 15:02:28 -07:00
# Source zfs configuration.
2011-12-04 15:32:18 -06:00
[ -r '/etc/default/zfs' ] && . /etc/default/zfs
2011-12-04 15:32:18 -06:00
[ -x "$ZPOOL" ] || exit 1
[ -x "$ZFS" ] || exit 2
2011-03-17 15:02:28 -07:00
start()
{
2011-12-04 15:32:18 -06:00
[ -f "$LOCKFILE" ] && return 3
2011-03-17 15:02:28 -07:00
# Requires selinux policy which has not been written.
if [ -r "/selinux/enforce" ] &&
[ "$(cat /selinux/enforce)" = "1" ]; then
log_failure_msg "SELinux ZFS policy required"
return 4
fi
2011-06-30 14:45:33 -07:00
# Delay until all required block devices are present.
udevadm settle
2011-03-17 15:02:28 -07:00
# Load the zfs module stack
/sbin/modprobe zfs
# Ensure / exists in /etc/mtab, if not update mtab accordingly.
# This should be handled by rc.sysinit but lets be paranoid.
awk '$2 == "/" { exit 1 }' /etc/mtab
RETVAL=$?
2011-12-04 15:32:18 -06:00
if [ "$RETVAL" -eq 0 ]; then
2011-03-17 15:02:28 -07:00
/bin/mount -f /
fi
# Import all pools described by the cache file, and then mount
# all filesystem based on their properties.
2011-12-04 15:32:18 -06:00
if [ -f "$ZPOOL_CACHE" ] ; then
2011-03-17 15:02:28 -07:00
log_begin_msg "Importing ZFS pools"
2011-12-04 15:32:18 -06:00
"$ZPOOL" import -c "$ZPOOL_CACHE" -aN 2>/dev/null
2011-03-17 15:02:28 -07:00
log_end_msg $?
log_begin_msg "Mounting ZFS filesystems"
2011-12-04 15:32:18 -06:00
"$ZFS" mount -a
2011-03-17 15:02:28 -07:00
log_end_msg $?
log_begin_msg "Exporting ZFS filesystems"
2011-12-04 15:32:18 -06:00
"$ZFS" share -a
log_end_msg $?
2011-03-17 15:02:28 -07:00
fi
2011-12-04 15:32:18 -06:00
touch "$LOCKFILE"
2011-03-17 15:02:28 -07:00
}
stop()
{
2011-12-04 15:32:18 -06:00
[ ! -f "$LOCKFILE" ] && return 3
2011-03-17 15:02:28 -07:00
log_begin_msg "Unmounting ZFS filesystems"
2011-12-04 15:32:18 -06:00
"$ZFS" umount -a
2011-03-17 15:02:28 -07:00
log_end_msg $?
2011-12-04 15:32:18 -06:00
rm -f "$LOCKFILE"
2011-03-17 15:02:28 -07:00
}
status()
{
2011-12-04 15:32:18 -06:00
[ ! -f "$LOCKFILE" ] && return 3
2011-03-17 15:02:28 -07:00
2011-12-04 15:32:18 -06:00
"$ZPOOL" status && echo "" && "$ZPOOL" list
2011-03-17 15:02:28 -07:00
}
case "$1" in
start)
start
RETVAL=$?
;;
stop)
stop
RETVAL=$?
;;
status)
status
RETVAL=$?
;;
restart)
stop
start
;;
condrestart)
2011-12-04 15:32:18 -06:00
if [ -f "$LOCKFILE" ]; then
2011-03-17 15:02:28 -07:00
stop
start
fi
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart}"
;;
esac
exit $RETVAL