summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/opensm
diff options
context:
space:
mode:
Diffstat (limited to 'etc/rc.d/opensm')
-rw-r--r--etc/rc.d/opensm28
1 files changed, 28 insertions, 0 deletions
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 $*
OpenPOWER on IntegriCloud