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