summaryrefslogtreecommitdiff
blob: d13b236455bb40f737e9ba436bdda898d2bd8ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/runscript
# Copyright 1999-2005 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.2 2005/02/21 15:10:57 azarah Exp $

depend() {
	need localmount
}

start() {
	ebegin "Starting multipathd"
	start-stop-daemon --start --quiet --exec /usr/sbin/multipathd
	eend $?
}

stop() {
	ebegin "Stopping multipathd"
	start-stop-daemon --stop --quiet --pid /var/run/multipathd.pid
	eend $?
}