Add rc script for /sbin/iscsid.

This commit is contained in:
joerg 2015-02-21 23:13:00 +00:00
parent a39ebfb79e
commit 88c9fb0be8
6 changed files with 48 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.234 2015/01/25 15:50:30 christos Exp $
# $NetBSD: mi,v 1.235 2015/02/21 23:13:00 joerg Exp $
#
# Note: end-user configuration files that are moved to another location
# should not be marked "obsolete"; they should just be removed from
@ -216,6 +216,7 @@
./etc/rc.d/ipsec etc-net-rc
./etc/rc.d/irdaattach etc-sys-rc
./etc/rc.d/iscsi_target etc-iscsi-rc
./etc/rc.d/iscsid etc-iscsi-rc
./etc/rc.d/isdnd etc-isdn-rc
./etc/rc.d/isibootd etc-bootserver-rc
./etc/rc.d/kdc etc-krb5-rc

View File

@ -1,4 +1,4 @@
# $NetBSD: rc.conf,v 1.130 2015/01/25 16:26:34 christos Exp $
# $NetBSD: rc.conf,v 1.131 2015/02/21 23:13:00 joerg Exp $
#
# /etc/defaults/rc.conf --
# default configuration of /etc/rc.conf
@ -297,6 +297,8 @@ kdc=NO kdc_flags="--detach"
# iSCSI target
iscsi_target=NO iscsi_target_flags=""
# iSCSI kernel initiator
iscsid=NO
# WPA daemons.
hostapd=NO hostapd_flags="-B /etc/hostapd.conf"

View File

@ -1,4 +1,4 @@
# $NetBSD: special,v 1.150 2014/12/30 03:52:03 uebayasi Exp $
# $NetBSD: special,v 1.151 2015/02/21 23:13:00 joerg Exp $
# @(#)special 8.2 (Berkeley) 1/23/94
#
# This file may be overwritten on upgrades.
@ -221,6 +221,7 @@
./etc/rc.d/ipsec type=file mode=0555
./etc/rc.d/irdaattach type=file mode=0555
./etc/rc.d/iscsi_target type=file mode=0555
./etc/rc.d/iscsid type=file mode=0555
./etc/rc.d/isdnd type=file mode=0555
./etc/rc.d/isibootd type=file mode=0555
./etc/rc.d/kdc type=file mode=0555

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.90 2014/09/11 18:01:22 roy Exp $
# $NetBSD: Makefile,v 1.91 2015/02/21 23:13:00 joerg Exp $
.include <bsd.own.mk>
@ -23,7 +23,7 @@ CONFIGFILES=\
gpio \
hostapd httpd \
identd ifwatchd inetd ipfilter ipfs ipmon ipnat ipsec \
irdaattach iscsi_target isdnd isibootd \
irdaattach iscsi_target iscsid isdnd isibootd \
kdc \
ldconfig ldpd local lpd lvm \
makemandb mdnsd mixerctl mopd motd mountall mountcritlocal \

37
etc/rc.d/iscsid Executable file
View File

@ -0,0 +1,37 @@
#!/bin/sh
#
# $NetBSD: iscsid,v 1.1 2015/02/21 23:13:00 joerg Exp $
#
# PROVIDE: iscsid
# REQUIRE: NETWORKING mountcritlocal
# BEFORE: securelevel mountcritremote
$_rc_subr_loaded . /etc/rc.subr
name="iscsid"
rcvar=$name
command="/sbin/${name}"
pidfile="/var/run/${name}.pid"
start_precmd="iscsid_precmd"
find_module()
{
local module rest
/sbin/modstat $1 | while read module rest; do
if [ "$module" = "$1" ]; then
echo found
break
fi
done
}
iscsid_precmd()
{
if [ "$(find_module iscsi)" != "found" ]; then
/sbin/modload iscsi
fi
}
load_rc_config $name
run_rc_command "$1"

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $NetBSD: postinstall,v 1.188 2014/12/30 07:02:29 apb Exp $
# $NetBSD: postinstall,v 1.189 2015/02/21 23:13:00 joerg Exp $
#
# Copyright (c) 2002-2008 The NetBSD Foundation, Inc.
# All rights reserved.
@ -1354,6 +1354,7 @@ ipnat
ipsec
irdaattach
iscsi_target
iscsid
isdnd
isibootd
kdc