summaryrefslogtreecommitdiff
blob: 03eedaa9be9d8de22a977550c47df06c7406a796 (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
#!/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/5.0.28/tomcat.init,v 1.4 2005/09/20 17:56:51 betelgeuse Exp $

depend() {
	use dns logger mysql postgresql net
}

start()	{
	ebegin "Starting Tomcat"
	cd ${CATALINA_BASE}/webapps
	start-stop-daemon --start --quiet --chuid tomcat:tomcat \
			  --exec ${CATALINA_HOME}/bin/catalina.sh \
			  --background -- ${TOMCAT_START}
	#sleep 5
	eend $?
}

stop()	{
	ebegin "Stopping Tomcat"
	start-stop-daemon --start --quiet --chuid tomcat:tomcat \
			  --exec ${CATALINA_HOME}/bin/catalina.sh \
		 	  -- ${TOMCAT_STOP}
	#sleep 5
	eend $?
}