mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 23:45:12 -04:00
daemon's manpage and probably improved. - Consistently use "filesystem" not "file system". Approved by: bapt, brueffer Differential Revision: D452
21 lines
335 B
Bash
Executable file
21 lines
335 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: iscsictl
|
|
# REQUIRE: NETWORK iscsid
|
|
# BEFORE: DAEMON
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="iscsictl"
|
|
desc="iSCSI initiator management utility"
|
|
rcvar="iscsictl_enable"
|
|
command="/usr/bin/${name}"
|
|
command_args="${iscsictl_flags}"
|
|
required_modules="iscsi"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|