tomcat4.wrapper
来自「opennms得相关源码 请大家看看」· WRAPPER 代码 · 共 42 行
WRAPPER
42 行
#!/bin/bash## Wrapper script for Tomcat 4.0, to be sure it will allways# be run with correct user profile (tomcat4 by default)## derived from stuff in tomcat4.init## Gomez Henri <hgomez@slib.fr># Keith Irwin <keith_irwin@non.hp.com># Nicolas Mailhot <nicolas.mailhot@one2team.com>## Source function library.. /etc/rc.d/init.d/functions# Get Tomcat configTOMCAT_CFG="@@@TCCONF@@@/tomcat4.conf"[ -r "$TOMCAT_CFG" ] && . "${TOMCAT_CFG}"# Path to the tomcat launch scriptTOMCAT_SCRIPT=/usr/bin/dtomcat4# Tomcat name :)TOMCAT_PROG=tomcat4 # if TOMCAT_USER is not set, use tomcat4 if [ -z "$TOMCAT_USER" ]; then TOMCAT_USER="tomcat4"fi# Since the daemon function will sandbox $tomcat# no environment stuff should be defined here anymore.# Please use the @@@TCCONF@@@/tomcat4.conf file instead ; it will# be read by the $tomcat scriptRETVAL=0su - $TOMCAT_USER -c "$TOMCAT_SCRIPT $@"RETVAL=$?exit $RETVAL
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?