sys-cluster/cman: remove unused file
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Fri, 10 Feb 2017 15:45:34 +0000 (16:45 +0100)
committerDavid Seifert <soap@gentoo.org>
Fri, 10 Feb 2017 22:32:53 +0000 (23:32 +0100)
Closes: https://github.com/gentoo/gentoo/pull/3900

sys-cluster/cman/files/qdiskd.initd [deleted file]

diff --git a/sys-cluster/cman/files/qdiskd.initd b/sys-cluster/cman/files/qdiskd.initd
deleted file mode 100644 (file)
index 96a946e..0000000
+++ /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"
-}