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 A02E3138359 for ; Sun, 20 Sep 2020 14:58:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF8B3E08FB; Sun, 20 Sep 2020 14:58:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6ACCE08FB for ; Sun, 20 Sep 2020 14:58:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF334340BDA for ; Sun, 20 Sep 2020 14:58:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D759342 for ; Sun, 20 Sep 2020 14:58:16 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1600613887.61f92e7f736c979765f2effe4258b0a4052d2d40.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/multipath-tools/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/multipath-tools/files/rc-multipathd X-VCS-Directories: sys-fs/multipath-tools/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 61f92e7f736c979765f2effe4258b0a4052d2d40 X-VCS-Branch: master Date: Sun, 20 Sep 2020 14:58:16 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d33608e4-faba-462e-b54a-d3f750c5044c X-Archives-Hash: a09ef89acdf4922d4e43d93309232c65 commit: 61f92e7f736c979765f2effe4258b0a4052d2d40 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Sep 20 14:01:09 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Sep 20 14:58:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61f92e7f sys-fs/multipath-tools: remove unused file Closes: https://github.com/gentoo/gentoo/pull/17616 Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Conrad Kostecki gentoo.org> sys-fs/multipath-tools/files/rc-multipathd | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/sys-fs/multipath-tools/files/rc-multipathd b/sys-fs/multipath-tools/files/rc-multipathd deleted file mode 100644 index d4d440f2c91..00000000000 --- a/sys-fs/multipath-tools/files/rc-multipathd +++ /dev/null @@ -1,20 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need localmount - after modules -} - -start() { - ebegin "Starting multipathd" - start-stop-daemon --start --quiet --exec /sbin/multipathd - eend $? -} - -stop() { - ebegin "Stopping multipathd" - start-stop-daemon --stop --quiet --pidfile /var/run/multipathd.pid - eend $? -}