summaryrefslogtreecommitdiff
blob: b1a80765235445b9e8695518f8e82a0346eccfa8 (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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ivman/files/ivman-0.3.init,v 1.1 2004/10/19 17:15:33 eradicator Exp $

depend() {
	need hald
}

start() {
	ebegin "Starting Automounter"
	start-stop-daemon --start --pidfile /var/run/ivman.pid --exec /usr/bin/ivman > /dev/null
	eend $?
}

stop() {
	ebegin "Stopping Automounter"
	start-stop-daemon --stop --pidfile /var/run/ivman.pid
	eend $?
}