summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-09-20 16:01:09 +0200
committerConrad Kostecki <conikost@gentoo.org>2020-09-20 16:58:07 +0200
commit61f92e7f736c979765f2effe4258b0a4052d2d40 (patch)
treeb550b961c19238a6526c61bc4fbb06178d55040c /sys-fs
parentdev-python/pycairo: Skip tests on py2 (diff)
downloadgentoo-61f92e7f736c979765f2effe4258b0a4052d2d40.tar.gz
gentoo-61f92e7f736c979765f2effe4258b0a4052d2d40.tar.bz2
gentoo-61f92e7f736c979765f2effe4258b0a4052d2d40.zip
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 <m.mairkeimberger@gmail.com> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/multipath-tools/files/rc-multipathd20
1 files changed, 0 insertions, 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 d4d440f2c910..000000000000
--- 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 $?
-}