summaryrefslogtreecommitdiff
blob: 8f08d5b3a961d83449350752cbbe84b9a331433b (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
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/tomcat/files/3.3.2/tomcat.init,v 1.1 2004/08/08 18:39:49 stuart Exp $

depend() {
	need net
	use dns
}

start()	{
	ebegin "Starting Tomcat"
	cd ${TOMCAT_HOME}
	start-stop-daemon --start --quiet --chuid tomcat:tomcat --exec ${TOMCAT_HOME}/bin/startup >${CONSOLE_LOG} 2>&1 
	sleep 5
	eend $?
}

stop() {
	ebegin "Stopping Tomcat"
	start-stop-daemon --start --quiet --chuid tomcat:tomcat --exec ${TOMCAT_HOME}/bin/shutdown >${CONSOLE_LOG} 2>&1 
	sleep 5
	eend $?
}