blob: 30ef8c124762ddfea350900b09b80d19352a480b (
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
|
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need openib
after net # ip net seems to be needed to perform management.
}
prog=/usr/sbin/opensm
start() {
ebegin "Starting OpenSM Infiniband Subnet Manager"
start-stop-daemon --start --background --exec $prog -- $OSM_OPTIONS
eend $?
}
stop() {
ebegin "Stopping OpenSM Infiniband Subnet Manager"
start-stop-daemon --stop --exec $prog
eend $?
}
|