You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-cluster/rgmanager/files/rgmanager.initd

36 lines
753 B

#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Adaption of the original RedHat script
# Original Copyright (C) 2003 Red Hat, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/rgmanager/files/rgmanager.initd,v 1.1 2011/09/14 10:47:36 ultrabug Exp $
depend() {
use net
# need cman
}
start() {
ebegin "Starting cluster resource manager"
# recreate run-directory
mkdir -p /var/run/cluster
start-stop-daemon \
--start \
--quiet \
--exec "/usr/sbin/rgmanager" \
--pidfile "${PIDFILE}" \
-- ${RGMGR_OPTS}
eend $ret
}
stop() {
ebegin "Shutting down cluster resource manager"
start-stop-daemon \
--stop \
--pidfile "${PIDFILE}" \
--retry 0
eend $?
}