blob: b88f11b1d6df99a995f939adbada8465852273a9 [file] [log] [blame]
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need net
use logger
}
start() {
configtest || return 1
ebegin "Starting Corosync Cluster Engine"
start-stop-daemon --start -q --exec /usr/sbin/corosync \
--pidfile /var/run/corosync.pid --make-pidfile --background \
-- -f
eend $?
}
stop() {
ebegin "Stopping Corosync Cluster Engine"
start-stop-daemon --stop -q --pidfile /var/run/corosync.pid
eend $?
}
configtest() {
ebegin "Checking corosync configuration"
test -f /etc/corosync/corosync.conf
eend $? "failed, please create the corosync configuration file"
}