Add Gentoo/Lunar/Redhat Init Scripts
[zfs.git] / etc / init.d / zfs.redhat
1 #!/bin/bash
2 #
3 # zfs           This script will mount/umount the zfs filesystems.
4 #
5 # chkconfig:    2345 01 99
6 # description:  This script will mount/umount the zfs filesystems during
7 #               system boot/shutdown.  Configuration of which filesystems
8 #               should be mounted is handled by the zfs 'mountpoint' and
9 #               'canmount' properties.  See the zfs(8) man page for details.
10 #               It is also responsible for all userspace zfs services.
11 #
12 ### BEGIN INIT INFO
13 # Provides: zfs
14 # Required-Start:
15 # Required-Stop:
16 # Should-Start:
17 # Should-Stop:
18 # Default-Start: 2 3 4 5
19 # Default-Stop: 1
20 # Short-Description: Mount/umount the zfs filesystems
21 # Description: ZFS is an advanced filesystem designed to simplify managing
22 #              and protecting your data.  This service mounts the ZFS
23 #              filesystems and starts all related zfs services.
24 ### END INIT INFO
25
26 export PATH=/usr/local/sbin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin
27
28 # Source function library & LSB routines
29 . /etc/rc.d/init.d/functions
30
31 # script variables
32 RETVAL=0
33 ZPOOL=zpool
34 ZFS=zfs
35 servicename=zfs
36 LOCKFILE=/var/lock/subsys/$servicename
37
38 # functions
39 zfs_installed() {
40         modinfo zfs > /dev/null 2>&1 || return 5
41         $ZPOOL  > /dev/null 2>&1
42         [ $? == 127 ] && return 5
43         $ZFS    > /dev/null 2>&1
44         [ $? == 127 ] && return 5
45         return 0
46 }
47
48 # i need a bash guru to simplify this, since this is copy and paste, but donno how
49 # to correctly dereference variable names in bash, or how to do this right
50
51 # first parameter is a regular expression that filters fstab
52 read_fstab() {
53         unset FSTAB
54         n=0
55         while read -r fs mntpnt fstype opts blah ; do
56                 fs=`printf '%b\n' "$fs"`
57                 FSTAB[$n]=$fs
58                 let n++
59         done < <(egrep "$1" /etc/fstab)
60 }
61
62 start()
63 {
64         # Disable lockfile check
65         # if [ -f "$LOCKFILE" ] ; then return 0 ; fi
66
67         # check if ZFS is installed.  If not, comply to FC standards and bail
68         zfs_installed || {
69                 action $"Checking if ZFS is installed: not installed" /bin/false
70                 return 5
71         }
72
73         # Requires selinux policy which has not been written.
74         if [ -r "/selinux/enforce" ] &&
75            [ "$(cat /selinux/enforce)" = "1" ]; then
76                 action $"SELinux ZFS policy required: " /bin/false || return 6
77         fi
78
79         # load kernel module infrastructure
80         if ! grep -q zfs /proc/modules ; then
81                 action $"Loading kernel ZFS infrastructure: " modprobe zfs || return 5
82         fi
83         sleep 1
84
85         action $"Mounting automounted ZFS filesystems: " $ZFS mount -a || return 152
86
87         # Read fstab, try to mount zvols ignoring error
88         read_fstab "^/dev/(zd|zvol)"
89         template=$"Mounting volume %s registered in fstab: "
90         for volume in "${FSTAB[@]}" ; do
91                 string=`printf "$template" "$volume"`
92                 action "$string" mount "$volume" 2>/dev/null || /bin/true
93         done
94
95         # touch "$LOCKFILE"
96 }
97
98 stop()
99 {
100         # Disable lockfile check
101         # if [ ! -f "$LOCKFILE" ] ; then return 0 ; fi
102
103         # check if ZFS is installed.  If not, comply to FC standards and bail
104         zfs_installed || {
105                 action $"Checking if ZFS is installed: not installed" /bin/false
106                 return 5
107         }
108
109         # the poweroff of the system takes care of this
110         # but it never unmounts the root filesystem itself
111         # shit
112
113         action $"Syncing ZFS filesystems: " sync
114              # about the only thing we can do, and then we
115              # hope that the umount process will succeed
116              # unfortunately the umount process does not dismount
117              # the root file system, there ought to be some way
118              # we can tell zfs to just flush anything in memory
119              # when a request to remount,ro comes in
120
121         #echo -n $"Unmounting ZFS filesystems: "
122         #$ZFS umount -a
123         #RETVAL=$?
124         #if [ $RETVAL -ne 0 ]; then
125         #       failure
126
127         #       return 8
128         #fi
129         #success
130
131         rm -f "$LOCKFILE"
132 }
133
134 # See how we are called
135 case "$1" in
136         start)
137                 start
138                 RETVAL=$?
139                 ;;
140         stop)
141                 stop
142                 RETVAL=$?
143                 ;;
144         status)
145                 lsmod | grep -q zfs || RETVAL=3
146                 $ZPOOL status && echo && $ZFS list || {
147                         [ -f "$LOCKFILE" ] && RETVAL=2 || RETVAL=4
148                 }
149                 ;;
150         restart)
151                 stop
152                 start
153                 ;;
154         condrestart)
155                 if [ -f "$LOCKFILE" ] ; then
156                         stop
157                         start
158                 fi
159                 ;;
160         *)
161                 echo $"Usage: $0 {start|stop|status|restart|condrestart}"
162                 RETVAL=3
163                 ;;
164 esac
165
166 exit $RETVAL