diff options
Diffstat (limited to 'libexec/rc/rc.d/iscsid')
-rwxr-xr-x | libexec/rc/rc.d/iscsid | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libexec/rc/rc.d/iscsid b/libexec/rc/rc.d/iscsid new file mode 100755 index 000000000000..e2418e8baaa1 --- /dev/null +++ b/libexec/rc/rc.d/iscsid @@ -0,0 +1,24 @@ +#!/bin/sh +# +# + +# PROVIDE: iscsid +# REQUIRE: NETWORKING +# BEFORE: DAEMON +# KEYWORD: nojail + +. /etc/rc.subr + +name="iscsid" +desc="iSCSI initiator daemon" +rcvar="iscsid_enable" +pidfile="/var/run/${name}.pid" +command="/usr/sbin/${name}" +required_modules="iscsi" + +load_rc_config $name + +# doesn't make sense to run in a svcj: nojail keyword +iscsid_svcj="NO" + +run_rc_command "$1" |