summaryrefslogtreecommitdiff
blob: ed3e24c4cf359cefa00e39d5b12e83472646b499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/cman/files/qdiskd-1.0x.rc,v 1.1 2008/03/17 16:47:11 xmerlin Exp $

depend() {
	use net
	need cluster-manager
}

start() {
	ebegin "Starting the Quorum Disk Daemon"
	start-stop-daemon --start --quiet --exec /sbin/qdiskd -- -Q
        eend $? "Failed to start qdiskd"
}

stop() {
	ebegin "Stopping the Quorum Disk Daemon"

	start-stop-daemon --stop --pidfile /var/run/qdiskd.pid
        eend $? "Failed to stop qdiskd"
}