From 47223981bccbf79d81a0b17657539432dacf36e2 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 12 Jun 2011 16:03:38 +0200 Subject: add pacemaker and update drbd --- package/openais/files/openais.init | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 package/openais/files/openais.init (limited to 'package/openais/files') 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 $? -- cgit v1.2.3