diff options
Diffstat (limited to 'sys-fabric/srptools/files/srpd.initd')
-rw-r--r-- | sys-fabric/srptools/files/srpd.initd | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/sys-fabric/srptools/files/srpd.initd b/sys-fabric/srptools/files/srpd.initd deleted file mode 100644 index a43d09bfb2a4..000000000000 --- a/sys-fabric/srptools/files/srpd.initd +++ /dev/null @@ -1,41 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -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 $? -} |