summaryrefslogtreecommitdiff
blob: 3588a4039306ed807ba73091bf378e7cc7944234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

description="SCSI RDMA Protoaemon daemon"

depend() {
	need net
}

checkconfig() {
	if ! modinfo ib_srp > /dev/null 2>&1 ; then
		eerror "ib_srp module not found!"
		return 1
	fi
}

start() {
	checkconfig
	ebegin "Loading ib_srp module"
	modprobe ib_srp
	eend $?
	ebegin "Starting srp_daemon"
	start-stop-daemon \
		--start \
		--background \
		--make-pidfile \
		--pidfile ${SRP_DAEMON_PID:-/var/run/srpd.pid} \
		--exec /usr/sbin/srp_daemon -- ${SRP_DAEMON_OPTS:- -e -R 60}
	eend $?
	
}

stop() {
	ebegin "Stopping srp_daemon"
	start-stop-daemon --stop --pidfile ${SRP_DAEMON_PID:-/var/run/srpd.pid}
	eend $?
	ebegin "Unloading ib_srp module"
	rmmod ib_srp
	eend $?
}