summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-02-10 16:45:34 +0100
committerDavid Seifert <soap@gentoo.org>2017-02-10 23:32:53 +0100
commit541f9d7e006092cf01d01a85dad0537128d41908 (patch)
tree952a03626bc67a716fceaa4a4e9be645a4e3b2e7
parentsys-cluster/ceph: remove unused patches (diff)
downloadgentoo-541f9d7e006092cf01d01a85dad0537128d41908.tar.gz
gentoo-541f9d7e006092cf01d01a85dad0537128d41908.tar.bz2
gentoo-541f9d7e006092cf01d01a85dad0537128d41908.zip
sys-cluster/cman: remove unused file
Closes: https://github.com/gentoo/gentoo/pull/3900
-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"
-}