summaryrefslogtreecommitdiff
path: root/package/openais/files
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-06-12 16:03:38 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-06-12 16:03:38 +0200
commit47223981bccbf79d81a0b17657539432dacf36e2 (patch)
tree16d8bfea48e7299041b0af03e6a0f5414604e6c7 /package/openais/files
parent36f4b43cf5ecb25a02830eed9548acc22a5697a8 (diff)
add pacemaker and update drbd
Diffstat (limited to 'package/openais/files')
-rw-r--r--package/openais/files/openais.init29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/openais/files/openais.init b/package/openais/files/openais.init
new file mode 100644
index 000000000..f36121c7a
--- /dev/null
+++ b/package/openais/files/openais.init
@@ -0,0 +1,29 @@
+#!/bin/sh
+#PKG openais
+#INIT 80
+. /etc/rc.conf
+
+case $1 in
+autostop) ;;
+autostart)
+ test x"${corosync:-NO}" = x"NO" && exit 0
+ exec sh $0 start
+ ;;
+start)
+ mount -t tmpfs -o size=4M tmpfs /dev/shm
+ [ -d /var/lib/corosync ] || mkdir -p /var/lib/corosync
+ /usr/sbin/aisexec
+ ;;
+stop)
+ kill $(pgrep -f corosync)
+ umount /dev/shm
+ ;;
+restart)
+ sh $0 stop
+ sh $0 start
+ ;;
+*)
+ echo "usage: $0 {start | stop | restart}"
+ ;;
+esac
+exit $?