7846554819
Reviewed by: lwhsu Approved by: lwhsu (src) MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D34589
18 lines
209 B
Bash
Executable File
18 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: zfsd
|
|
# REQUIRE: devd zfs
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="zfsd"
|
|
rcvar="zfsd_enable"
|
|
command="/usr/sbin/${name}"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|