From 5115240a6cdc054f7eea804355742f97c74578d8 Mon Sep 17 00:00:00 2001 From: jeff Date: Mon, 21 Mar 2011 09:58:24 +0000 Subject: - Merge in OFED 1.5.3 from projects/ofed/head --- etc/rc.d/Makefile | 4 ++++ etc/rc.d/opensm | 28 ++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 etc/rc.d/opensm (limited to 'etc/rc.d') diff --git a/etc/rc.d/Makefile b/etc/rc.d/Makefile index 6f80b87..ed10b87 100644 --- a/etc/rc.d/Makefile +++ b/etc/rc.d/Makefile @@ -42,6 +42,10 @@ FILES= DAEMON FILESYSTEMS LOGIN NETWORKING SERVERS \ ypset ypupdated ypxfrd \ zfs zvol +.if ${MK_OFED} != "no" +FILES+= opensm +.endif + .if ${MK_OPENSSH} != "no" FILES+= sshd .endif diff --git a/etc/rc.d/opensm b/etc/rc.d/opensm new file mode 100644 index 0000000..310476b --- /dev/null +++ b/etc/rc.d/opensm @@ -0,0 +1,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 $* -- cgit v1.1