mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Reviewed by: lwhsu Approved by: lwhsu (src) MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D34589
17 lines
209 B
Bash
Executable file
17 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"
|