summaryrefslogtreecommitdiff
blob: c2a7a33215ca0991122b257313f9a8d0ba58be96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/files/http-replicator-3.0.init,v 1.1 2005/06/02 06:33:24 griffon26 Exp $ 

depend() {
	need net
}

start() {
	ebegin "Starting Http-Replicator"
	start-stop-daemon --start --pidfile /var/run/http-replicator.pid --name http-replicator \
		--startas /usr/bin/http-replicator -- -s -f --pid /var/run/http-replicator.pid --daemon $DAEMON_OPTS
	eend $? "Failed to start Http-Replicator"
}

stop() {
	ebegin "Stopping Http-Replicator"
	start-stop-daemon --stop --pidfile /var/run/http-replicator.pid --name http-replicator \
		--signal 2 --oknodo
	eend $? "Failed to stop Http-Replicator"
}