diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-11-10 09:48:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-11-10 09:48:06 +0000 |
commit | d44e28f166d219fc85787f48e448fcaa9d154c14 (patch) | |
tree | b9c5087724d3920eae53cb51313e36e8028d75f8 /sys-fs/multipath-tools | |
parent | new upstream release. (diff) | |
download | gentoo-2-d44e28f166d219fc85787f48e448fcaa9d154c14.tar.gz gentoo-2-d44e28f166d219fc85787f48e448fcaa9d154c14.tar.bz2 gentoo-2-d44e28f166d219fc85787f48e448fcaa9d154c14.zip |
use --pidfile rather than --pid as pointed out by Uberlord
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'sys-fs/multipath-tools')
-rw-r--r-- | sys-fs/multipath-tools/files/rc-multipathd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-fs/multipath-tools/files/rc-multipathd b/sys-fs/multipath-tools/files/rc-multipathd index 8c39bcb19726..41b173ad1e67 100644 --- a/sys-fs/multipath-tools/files/rc-multipathd +++ b/sys-fs/multipath-tools/files/rc-multipathd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/multipath-tools/files/rc-multipathd,v 1.3 2006/09/28 08:55:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/multipath-tools/files/rc-multipathd,v 1.4 2006/11/10 09:48:06 vapier Exp $ depend() { need localmount @@ -15,6 +15,6 @@ start() { stop() { ebegin "Stopping multipathd" - start-stop-daemon --stop --quiet --pid /var/run/multipathd.pid + start-stop-daemon --stop --quiet --pidfile /var/run/multipathd.pid eend $? } |