summarylogtreecommitdiffstats
path: root/opensm.launch
diff options
context:
space:
mode:
authorJames Harvey2016-07-14 21:15:08 -0400
committerJames Harvey2016-07-14 21:15:08 -0400
commit260e840e93053d363b70190f83bd589f9b4e80dd (patch)
tree7ea13e190ef22a54b01966a4dd8a4e3e2ff80052 /opensm.launch
downloadaur-260e840e93053d363b70190f83bd589f9b4e80dd.tar.gz
Initial import, a fork of AUR opensm, only changes are to PKGBUILD to represent the forking
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