diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-09-20 16:01:09 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-09-20 16:58:07 +0200 |
commit | 61f92e7f736c979765f2effe4258b0a4052d2d40 (patch) | |
tree | b550b961c19238a6526c61bc4fbb06178d55040c /sys-fs | |
parent | dev-python/pycairo: Skip tests on py2 (diff) | |
download | gentoo-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-multipathd | 20 |
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 $? -} |