summaryrefslogtreecommitdiff
blob: 9c6eb60e4b0b65c2e4fcbf60612c87b5bb0889f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/partysip/files/partysip.rc6,v 1.3 2005/07/17 22:20:22 stkn Exp $

depend() {
	need net
}

start() {
	ebegin "Starting partysip"
	start-stop-daemon --start --background --pidfile /var/run/partysip.pid \
		-m --quiet --exec /usr/sbin/partysip -- ${PARTYSIP_OPTS}
	eend $?
}

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