3f34f2febb145bbbf2fe1ba939132c602e8ca156
[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         # Delay until all required block devices are present.
80         udevadm settle
81
82         # load kernel module infrastructure
83         if ! grep -q zfs /proc/modules ; then
84                 action $"Loading kernel ZFS infrastructure: " modprobe zfs || return 5
85         fi
86         sleep 1
87
88         action $"Mounting automounted ZFS filesystems: " $ZFS mount -a || return 152
89
90         # Read fstab, try to mount zvols ignoring error
91         read_fstab "^/dev/(zd|zvol)"
92         template=$"Mounting volume %s registered in fstab: "
93         for volume in "${FSTAB[@]}" ; do
94                 string=`printf "$template" "$volume"`
95                 action "$string" mount "$volume" 2>/dev/null || /bin/true
96         done
97
98         # touch "$LOCKFILE"
99 }
100
101 stop()
102 {
103         # Disable lockfile check
104         # if [ ! -f "$LOCKFILE" ] ; then return 0 ; fi
105
106         # check if ZFS is installed.  If not, comply to FC standards and bail
107         zfs_installed || {
108                 action $"Checking if ZFS is installed: not installed" /bin/false
109                 return 5
110         }
111
112         # the poweroff of the system takes care of this
113         # but it never unmounts the root filesystem itself
114         # shit
115
116         action $"Syncing ZFS filesystems: " sync
117              # about the only thing we can do, and then we
118              # hope that the umount process will succeed
119              # unfortunately the umount process does not dismount
120              # the root file system, there ought to be some way
121              # we can tell zfs to just flush anything in memory
122              # when a request to remount,ro comes in
123
124         #echo -n $"Unmounting ZFS filesystems: "
125         #$ZFS umount -a
126         #RETVAL=$?
127         #if [ $RETVAL -ne 0 ]; then
128         #       failure
129
130         #       return 8
131         #fi
132         #success
133
134         rm -f "$LOCKFILE"
135 }
136
137 # See how we are called
138 case "$1" in
139         start)
140                 start
141                 RETVAL=$?
142                 ;;
143         stop)
144                 stop
145                 RETVAL=$?
146                 ;;
147         status)
148                 lsmod | grep -q zfs || RETVAL=3
149                 $ZPOOL status && echo && $ZFS list || {
150                         [ -f "$LOCKFILE" ] && RETVAL=2 || RETVAL=4
151                 }
152                 ;;
153         restart)
154                 stop
155                 start
156                 ;;
157         condrestart)
158                 if [ -f "$LOCKFILE" ] ; then
159                         stop
160                         start
161                 fi
162                 ;;
163         *)
164                 echo $"Usage: $0 {start|stop|status|restart|condrestart}"
165                 RETVAL=3
166                 ;;
167 esac
168
169 exit $RETVAL