summarylogtreecommitdiffstats
path: root/opensm.launch
diff options
context:
space:
mode:
Diffstat (limited to 'opensm.launch')
-rw-r--r--opensm.launch9
1 files changed, 9 insertions, 0 deletions
diff --git a/opensm.launch b/opensm.launch
new file mode 100644
index 000000000000..08f0b1f5ec2f
--- /dev/null
+++ b/opensm.launch
@@ -0,0 +1,9 @@
+#!/bin/bash
+# Copied from Fedora's opensm-3.3.17-4.fc22.x86_64.rpm
+# Modified to just launch opensm
+# Will come back to adding multiple OpenSM daemons running at once, which is what the rest of Fedora's version is for
+#
+# Launch the necessary OpenSM daemons for systemd
+
+(while true; do /usr/bin/opensm; sleep 30; done) &
+exit 0