summaryrefslogtreecommitdiff
blob: 00036b4f05217b82f3fb113827aa550be76af3f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/files/amuleweb.initd,v 1.1 2005/07/10 15:02:47 chainsaw Exp $

depend() {
	need net
	use amuled
}

start() {
	if ! test -f "${AMULEHOME}/.eMule"; then
		eerror "You must start and configure amuleweb before launch it. Sorry."
		return 1
	fi

	if pgrep -u ${AMULEUSER} amuleweb >/dev/null; then
		eerror "An instance of aMule webserver is already running"
		return 1
	fi

	rm /var/run/amuleweb.pid

	OPTIONS="-rh ${AMULEHOST} -p ${AMULEPORT} -pw ${AMULEPWD}"

	einfo $OPTIONS
	ebegin "Starting aMule WebServer"
	env HOME="${AMULEHOME}" start-stop-daemon --start \
		--quiet -b \
		--make-pidfile --pidfile /var/run/amuleweb.pid \
		-c ${AMULEUSER} \
		-x /usr/bin/amuleweb -- ${OPTIONS} &>${LOG}
	
	sleep 1
	if ! pgrep -u ${AMULEUSER} amuleweb > /dev/null; then
		eerror "aMule daemon can't be started! Check logfile: ${LOG}"
		eend 1
		return 1
	fi
	eend $?
}

stop() {
	ebegin "Stopping aMule WebServer"
	start-stop-daemon --oknodo --stop --pidfile /var/run/amuleweb.pid &>/dev/null
	eend $?
}