blob: ad4d22fd606295fd844e403c7f6f52f98a23e908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/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.27/tomcat.init,v 1.2 2004/08/26 18:17:55 axxo Exp $
depend() {
need net
use dns logger mysql postgresql
}
start() {
ebegin "Starting Tomcat"
start-stop-daemon --start --quiet --chuid tomcat:tomcat --exec ${CATALINA_HOME}/bin/catalina.sh -- ${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 $?
}
|