summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-cluster/cman/files/qdiskd.initd')
-rw-r--r--sys-cluster/cman/files/qdiskd.initd21
1 files changed, 0 insertions, 21 deletions
diff --git a/sys-cluster/cman/files/qdiskd.initd b/sys-cluster/cman/files/qdiskd.initd
deleted file mode 100644
index 96a946e49d0f..000000000000
--- a/sys-cluster/cman/files/qdiskd.initd
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Id$
-
-depend() {
- use net
- need cman
-}
-
-start() {
- ebegin "Starting the Quorum Disk Daemon"
- start-stop-daemon --start --quiet --exec /usr/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"
-}