From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D72E139694 for ; Fri, 10 Feb 2017 22:34:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80B22E0DA3; Fri, 10 Feb 2017 22:34:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59753E0DA2 for ; Fri, 10 Feb 2017 22:34:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 673E534112A for ; Fri, 10 Feb 2017 22:34:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35FA8436D for ; Fri, 10 Feb 2017 22:34:09 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1486765973.541f9d7e006092cf01d01a85dad0537128d41908.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/cman/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/cman/files/qdiskd.initd X-VCS-Directories: sys-cluster/cman/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 541f9d7e006092cf01d01a85dad0537128d41908 X-VCS-Branch: master Date: Fri, 10 Feb 2017 22:34:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9c3f7b3e-33b6-4f1f-896d-cb1fcca60efc X-Archives-Hash: d33dbc63031f8c1722db8d8126bde19b commit: 541f9d7e006092cf01d01a85dad0537128d41908 Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Fri Feb 10 15:45:34 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Feb 10 22:32:53 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=541f9d7e sys-cluster/cman: remove unused file Closes: https://github.com/gentoo/gentoo/pull/3900 sys-cluster/cman/files/qdiskd.initd | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/sys-cluster/cman/files/qdiskd.initd b/sys-cluster/cman/files/qdiskd.initd deleted file mode 100644 index 96a946e49d..0000000000 --- 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" -}