diff --git a/libexec/rc/rc.d/iscsictl b/libexec/rc/rc.d/iscsictl index 6ae3910f0628..471b030ff799 100755 --- a/libexec/rc/rc.d/iscsictl +++ b/libexec/rc/rc.d/iscsictl @@ -1,21 +1,21 @@ #!/bin/sh # # $FreeBSD$ # # PROVIDE: iscsictl -# REQUIRE: NETWORK iscsid +# REQUIRE: NETWORKING 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" diff --git a/libexec/rc/rc.d/iscsid b/libexec/rc/rc.d/iscsid index 3b1cb6f40d1c..48a7b61d1533 100755 --- a/libexec/rc/rc.d/iscsid +++ b/libexec/rc/rc.d/iscsid @@ -1,21 +1,21 @@ #!/bin/sh # # $FreeBSD$ # # PROVIDE: iscsid -# REQUIRE: NETWORK +# 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 run_rc_command "$1" diff --git a/libexec/rc/rc.d/kfd b/libexec/rc/rc.d/kfd index 5a1a16c37af4..65feaf6102f4 100755 --- a/libexec/rc/rc.d/kfd +++ b/libexec/rc/rc.d/kfd @@ -1,24 +1,24 @@ #!/bin/sh # # $FreeBSD$ # # PROVIDE: kfd -# REQUIRE: NETWORK +# REQUIRE: NETWORKING # KEYWORD: shutdown . /etc/rc.subr name=kfd desc="Receive forwarded tickets" rcvar=${name}_enable start_precmd=${name}_start_precmd kfd_start_precmd() { command_args="$command_args -i &" } load_rc_config $name run_rc_command "$1" diff --git a/libexec/rc/rc.d/routed b/libexec/rc/rc.d/routed index 81ba077c85e4..ecf8f5a88b39 100755 --- a/libexec/rc/rc.d/routed +++ b/libexec/rc/rc.d/routed @@ -1,22 +1,22 @@ #!/bin/sh # # $FreeBSD$ # # PROVIDE: routed dynamicrouting # REQUIRE: netif routing -# BEFORE: NETWORK +# BEFORE: NETWORKING # KEYWORD: nojailvnet . /etc/rc.subr name="routed" desc="Network RIP and router discovery routing daemon" rcvar="routed_enable" set_rcvar_obsolete router_enable routed_enable set_rcvar_obsolete router routed_program set_rcvar_obsolete router_flags routed_flags load_rc_config $name run_rc_command "$1"