Deleted Added
full compact
zfs (195938) zfs (253076)
1#!/bin/sh
2#
1#!/bin/sh
2#
3# $FreeBSD: head/etc/rc.d/zfs 195938 2009-07-29 05:23:52Z pjd $
3# $FreeBSD: head/etc/rc.d/zfs 253076 2013-07-09 08:59:39Z avg $
4#
5
6# PROVIDE: zfs
7# REQUIRE: mountcritlocal
8
9. /etc/rc.subr
10
11name="zfs"

--- 6 unchanged lines hidden (view full) ---

18{
19 if [ `$SYSCTL_N security.jail.mount_allowed` -eq 1 ]; then
20 zfs mount -a
21 fi
22}
23
24zfs_start_main()
25{
4#
5
6# PROVIDE: zfs
7# REQUIRE: mountcritlocal
8
9. /etc/rc.subr
10
11name="zfs"

--- 6 unchanged lines hidden (view full) ---

18{
19 if [ `$SYSCTL_N security.jail.mount_allowed` -eq 1 ]; then
20 zfs mount -a
21 fi
22}
23
24zfs_start_main()
25{
26 zfs mount -a
26 zfs mount -va
27 zfs share -a
28 if [ ! -r /etc/zfs/exports ]; then
29 touch /etc/zfs/exports
30 fi
31}
32
33zfs_start()
34{

--- 31 unchanged lines hidden ---
27 zfs share -a
28 if [ ! -r /etc/zfs/exports ]; then
29 touch /etc/zfs/exports
30 fi
31}
32
33zfs_start()
34{

--- 31 unchanged lines hidden ---