summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/opensm
blob: 310476be4d9097f62bd5f63f4426cb7bc03feddf (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
#!/bin/sh
#
# $FreeBSD$
#

# PROVIDE: opensm
# BEFORE: netif
# REQUIRE: FILESYSTEMS

. /etc/rc.subr

name="opensm"
start_cmd="opensm_start"
rcvar="opensm_enable"

command=/usr/bin/opensm
command_args="-B"

opensm_start()
{
	for guid in `ibstat | grep "Port GUID" | cut -d ':' -f2`; do
		[ -z "${rc_quiet}" ] && echo "Starting ${guid} opensm."
		${command} ${command_args} -g ${guid} >> /dev/null
	done
}

load_rc_config $name
run_rc_command $*
OpenPOWER on IntegriCloud