You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-fabric/opensm/files/sldd.init.d

26 lines
612 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need opensm
after net # ip net seems to be needed to perform management.
}
prog=/usr/sbin/sldd.sh
pidfile=/var/run/sldd.pid
start() {
ebegin "Starting Semi-static LID OpenSM Distribution Manager"
start-stop-daemon --start --background --pidfile "${pidfile}" \
--make-pidfile --wait 500 --exec $prog
eend $?
}
stop() {
ebegin "Stopping OpenSM Infiniband Subnet Manager"
start-stop-daemon --stop --pidfile "${pidfile}"
eend $?
}