diff options
author | znerd <znerd@FreeBSD.org> | 2004-01-02 20:31:11 +0800 |
---|---|---|
committer | znerd <znerd@FreeBSD.org> | 2004-01-02 20:31:11 +0800 |
commit | 62e38f6d0114d77d43451ee0e28803d6307449f6 (patch) | |
tree | da2372eb8ee184ace8541500aa5026f49662cc52 /www/tomcat6/pkg-deinstall | |
parent | 91ccb6803edf796ea17588de27a0755b8ba10910 (diff) | |
download | freebsd-ports-gnome-62e38f6d0114d77d43451ee0e28803d6307449f6.tar.gz freebsd-ports-gnome-62e38f6d0114d77d43451ee0e28803d6307449f6.tar.zst freebsd-ports-gnome-62e38f6d0114d77d43451ee0e28803d6307449f6.zip |
Fixed name of PID file in pkg-deinstall.
Bumped PORTREVISION.
PR: 60781
Submitted by: Kang Liu <liukang@bjpu.edu.cn>
Diffstat (limited to 'www/tomcat6/pkg-deinstall')
-rw-r--r-- | www/tomcat6/pkg-deinstall | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/tomcat6/pkg-deinstall b/www/tomcat6/pkg-deinstall index 4dea2e4f7035..634b9b770fee 100644 --- a/www/tomcat6/pkg-deinstall +++ b/www/tomcat6/pkg-deinstall @@ -8,14 +8,14 @@ # * Checks if the 'www' user exists. If it does, then it displays # a message. # -# $FreeBSD: /tmp/pcvs/ports/www/tomcat6/Attic/pkg-deinstall,v 1.1 2003-08-13 11:39:38 znerd Exp $ +# $FreeBSD: /tmp/pcvs/ports/www/tomcat6/Attic/pkg-deinstall,v 1.2 2004-01-02 12:31:11 znerd Exp $ # # Make sure we're in the right stage of the process if [ "$2" = "DEINSTALL" ]; then # Kill the process if it is still running - PID_FILE=/var/run/tomcat4.pid + PID_FILE=/var/run/tomcat5 if [ -s ${PID_FILE} ]; then PID=`cat ${PID_FILE}` echo -n ">> Killing Jakarta Tomcat process (${PID})..." |