From 61f92e7f736c979765f2effe4258b0a4052d2d40 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sun, 20 Sep 2020 16:01:09 +0200 Subject: [PATCH] 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 Signed-off-by: Conrad Kostecki --- sys-fs/multipath-tools/files/rc-multipathd | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 sys-fs/multipath-tools/files/rc-multipathd diff --git a/sys-fs/multipath-tools/files/rc-multipathd b/sys-fs/multipath-tools/files/rc-multipathd deleted file mode 100644 index d4d440f2c9109..0000000000000 --- 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 $? -}