summaryrefslogtreecommitdiff
path: root/package/openais/files/openais.init
blob: f36121c7a654e4d10414f86d699442765c781371 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 $?