diff options
author | pav <pav@FreeBSD.org> | 2006-09-08 17:31:07 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-09-08 17:31:07 +0800 |
commit | b8d4b593e9378d131c47f01cd3a514caa56f7b74 (patch) | |
tree | 9441e17343d22f440850b7c0df04a2584e49dc49 /www/tomcat7 | |
parent | 778f47d9418a7a8ed2b4a979f3dcce94b0a06bf0 (diff) | |
download | freebsd-ports-gnome-b8d4b593e9378d131c47f01cd3a514caa56f7b74.tar.gz freebsd-ports-gnome-b8d4b593e9378d131c47f01cd3a514caa56f7b74.tar.zst freebsd-ports-gnome-b8d4b593e9378d131c47f01cd3a514caa56f7b74.zip |
- Work around an inability of rc.subr's _find_processes() to work with
processes that show as [java] on ps output. This should fix the rc script
stop action for all folks.
Diffstat (limited to 'www/tomcat7')
-rw-r--r-- | www/tomcat7/Makefile | 1 | ||||
-rw-r--r-- | www/tomcat7/files/tomcat55.sh.in | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/www/tomcat7/Makefile b/www/tomcat7/Makefile index d92c862ffad8..c311eefcdbc9 100644 --- a/www/tomcat7/Makefile +++ b/www/tomcat7/Makefile @@ -7,6 +7,7 @@ PORTNAME= tomcat PORTVERSION= 5.5.17 +PORTREVISION= 1 CATEGORIES= www java MASTER_SITES= ${MASTER_SITE_APACHE} MASTER_SITE_SUBDIR= tomcat/tomcat-5/v${PORTVERSION}/bin diff --git a/www/tomcat7/files/tomcat55.sh.in b/www/tomcat7/files/tomcat55.sh.in index 2823c81ca7d1..bc87ede6d9d4 100644 --- a/www/tomcat7/files/tomcat55.sh.in +++ b/www/tomcat7/files/tomcat55.sh.in @@ -109,7 +109,7 @@ log_args=">> ${tomcat%%TOMCAT_VERSION%%_stdout_log} \ if [ -f $pidfile ]; then read rc_pid junk < $pidfile if [ ! -z "$rc_pid" ]; then - procname=`ps -o comm= $rc_pid` + procname=`ps -o ucomm= $rc_pid` fi fi @@ -128,7 +128,7 @@ pid_touch () } tomcat%%TOMCAT_VERSION%%_stop() { - rc_pid=$(check_pidfile $pidfile $procname) + rc_pid=$(check_pidfile $pidfile *$procname*) if [ -z "$rc_pid" ]; then [ -n "$rc_fast" ] && return 0 |