From nobody@FreeBSD.org Tue Oct 27 13:29:48 2009 Return-Path: Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB7621065745 for ; Tue, 27 Oct 2009 13:29:48 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id AA8198FC1C for ; Tue, 27 Oct 2009 13:29:48 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n9RDTmsp037414 for ; Tue, 27 Oct 2009 13:29:48 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n9RDTm44037379; Tue, 27 Oct 2009 13:29:48 GMT (envelope-from nobody) Message-Id: <200910271329.n9RDTm44037379@www.freebsd.org> Date: Tue, 27 Oct 2009 13:29:48 GMT From: Christer Solskogen To: freebsd-gnats-submit@FreeBSD.org Subject: Unable to stop tomcat6 from rc.d X-Send-Pr-Version: www-3.1 X-GNATS-Notify: >Number: 140015 >Category: ports >Synopsis: Unable to stop www/tomcat6 from rc.d >Confidential: no >Severity: non-critical >Priority: low >Responsible: ale >State: closed >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 27 13:30:01 UTC 2009 >Closed-Date: Mon Mar 01 15:38:51 UTC 2010 >Last-Modified: Mon Mar 1 15:40:05 UTC 2010 >Originator: Christer Solskogen >Release: 8.0-RC1 >Organization: >Environment: FreeBSD tomcat 8.0-RC1 FreeBSD 8.0-RC1 #0: Tue Oct 13 21:37:25 CEST 2009 root@shine.antarctica.no:/usr/obj/usr/src/sys/SHINE amd64 (jailed) >Description: The rc.d script provided by the www/tomcat6 port don't work as expected. It starts alright, but it's not able to stop the java process. Using: diablo-jdk-1.6.0.07.02_6 tomcat-6.0.20_1 >How-To-Repeat: How to repeat: Install tomcat6 from ports, and add tomcat60_enable="YES" to rc.conf. tomcat# /usr/local/etc/rc.d/tomcat6 start Starting tomcat60. tomcat# /usr/local/etc/rc.d/tomcat6 stop tomcat60 not running? (check /var/run/tomcat60.pid). tomcat# ps waux | grep java www 1681 0.0 1.0 1247408 80528 ?? IsJ 1:25PM 0:02.52 /usr/local/diablo-jdk1.6.0/bin/java -Djava.endorsed.dirs=/usr/local/apache-tomcat-6.0/endorsed -classpath /usr/local/ap >Fix: >Release-Note: >Audit-Trail: Responsible-Changed-From-To: freebsd-bugs->nemoliu Responsible-Changed-By: linimon Responsible-Changed-When: Tue Oct 27 15:01:32 UTC 2009 Responsible-Changed-Why: Make this a ports PR, fix synopsis, and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=140015 From: Roger Gujord To: bug-followup@FreeBSD.org, christer.solskogen@gmail.com Cc: Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Wed, 02 Dec 2009 14:20:32 +0100 --=-sZykeMDwFDSMDfhnrXUi Content-Type: text/plain Content-Transfer-Encoding: 7bit Patch attached to fix /usr/local/etc/rc.d/tomcat6 -- Roger Gujord --=-sZykeMDwFDSMDfhnrXUi Content-Disposition: attachment; filename="patch.tomcat6" Content-Type: text/x-patch; name="patch.tomcat6"; charset="UTF-8" Content-Transfer-Encoding: 7bit *** ../tomcat6 2009-12-02 12:53:44.000000000 +0000 --- tomcat6 2009-12-02 13:05:17.000000000 +0000 *************** *** 116,125 **** --- 116,126 ---- pid_touch () { touch $pidfile chown $tomcat60_user $pidfile + chmod u=rw,g=+r,o=+r $pidfile } tomcat60_stop() { rc_pid=$(check_pidfile $pidfile $procname) --=-sZykeMDwFDSMDfhnrXUi-- From: Christer Solskogen To: Roger Gujord Cc: bug-followup@freebsd.org Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Wed, 2 Dec 2009 14:26:40 +0100 2009/12/2 Roger Gujord : > Patch attached to fix /usr/local/etc/rc.d/tomcat6 > -- Still no go, I'm afraid -- chs, From: Roger Gujord To: bug-followup@FreeBSD.org, christer.solskogen@gmail.com Cc: Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Wed, 2 Dec 2009 19:55:49 +0100 --Apple-Mail-4-152592068 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii New patch attached. -- Roger Gujord --Apple-Mail-4-152592068 Content-Disposition: attachment; filename=patch-2.diff Content-Type: application/octet-stream; name="patch-2.diff" Content-Transfer-Encoding: 7bit *** ../tomcat6 2009-12-02 18:49:13.000000000 +0000 --- tomcat6 2009-12-02 18:51:21.000000000 +0000 *************** *** 116,133 **** --- 116,143 ---- pid_touch () { touch $pidfile chown $tomcat60_user $pidfile + chmod u=rw,g=+r,o=+r $pidfile } tomcat60_stop() { rc_pid=$(check_pidfile $pidfile $procname) if [ -z "$rc_pid" ]; then [ -n "$rc_fast" ] && return 0 if [ -n "$pidfile" ]; then + if [ -f $pidfile ]; then + read rc_pid junk < $pidfile + if [ ! -z "$rc_pid" ]; then + procname=`ps -o command= $rc_pid | cut -f1 -d' '` + fi + fi + if [ -z "$procname" ]; then + procname=nonexistent + fi echo "${name} not running? (check $pidfile)." else echo "${name} not running?" fi return 1 --Apple-Mail-4-152592068-- From: Christer Solskogen To: Roger Gujord Cc: bug-followup@freebsd.org Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Wed, 2 Dec 2009 20:26:34 +0100 On Wed, Dec 2, 2009 at 7:55 PM, Roger Gujord wrote: > New patch attached. I still get tomcat60 not running? (check /var/run/tomcat60.pid) But why not use tomcats own shutdown.sh (and startup.sh) instead of killing the pid the most fantastic way :) (using tomcat6s own startup.sh and shutdown.sh works) -- chs, From: Roger Gujord To: bug-followup@FreeBSD.org, christer.solskogen@gmail.com Cc: Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Wed, 2 Dec 2009 20:28:25 +0100 Sorry... the latest patch is just some rubbish and will most likely not = help at all. You may also want to put the following in your /etc/rc.conf: tomcat60_enable=3D"YES" tomcat60_user=3D"www" tomcat60_java_version=3D"1.6" Check that your /var/run/tomcat6.pid has the correct ownership and that = your tomcat user can read and write to it. The chmod changes (as in the first patch) in /usr/local/etc/rc.d/tomcat6 = solved the problem for me. -- Roger Gujord= From: Christer Solskogen To: Roger Gujord Cc: bug-followup@freebsd.org Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Wed, 2 Dec 2009 20:36:11 +0100 On Wed, Dec 2, 2009 at 8:28 PM, Roger Gujord wrote: > Sorry... the latest patch is just some rubbish and will most likely not help at all. > > You may also want to put the following in your /etc/rc.conf: > > tomcat60_enable="YES" > tomcat60_user="www" > tomcat60_java_version="1.6" > > Check that your /var/run/tomcat6.pid has the correct ownership and that your tomcat user can read and write to it. > > The chmod changes (as in the first patch) in /usr/local/etc/rc.d/tomcat6 solved the problem for me. > But not for me :( tomcat# /usr/local/etc/rc.d/tomcat6 start Starting tomcat60. tomcat# /usr/local/etc/rc.d/tomcat6 stop tomcat60 not running? (check /var/run/tomcat60.pid). tomcat# ls -la /var/run/tomcat60.pid -rw-r--r-- 1 www wheel 5 Dec 2 20:34 /var/run/tomcat60.pid tomcat# cat /var/run/tomcat60.pid 39953 tomcat# ps aux | grep tom www 39953 0.0 0.9 1421152 72240 ?? IsJ 8:34PM 0:02.06 /usr/local/diablo-jdk1.6.0/bin/java -XX:MaxPermSize=256m -Djava.endorsed.dirs=/usr/local/apache-tomcat-6.0/endorsed -cl -- chs, From: Roger Gujord To: bug-followup@FreeBSD.org, christer.solskogen@gmail.com Cc: Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Wed, 2 Dec 2009 23:32:45 +0100 --Apple-Mail-17-165607528 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii The attached patch should solve the problem. Thank you in advance for testing and reporting back :-) -- Roger Gujord --Apple-Mail-17-165607528 Content-Disposition: attachment; filename=patch-3.diff Content-Type: application/octet-stream; name="patch-3.diff" Content-Transfer-Encoding: 7bit *** ../tomcat6 2009-12-02 13:08:51.000000000 +0000 --- tomcat6 2009-12-02 22:20:57.000000000 +0000 *************** *** 116,145 **** pid_touch () { touch $pidfile chown $tomcat60_user $pidfile } tomcat60_stop() { rc_pid=$(check_pidfile $pidfile $procname) if [ -z "$rc_pid" ]; then [ -n "$rc_fast" ] && return 0 if [ -n "$pidfile" ]; then ! echo "${name} not running? (check $pidfile)." else echo "${name} not running?" fi - return 1 fi ! ! echo "Stopping ${name}." ! ${java_command} stop ! tomcat_wait_max_for_pid ${tomcat60_stop_timeout} ${rc_pid} ! kill -KILL ${rc_pid} 2> /dev/null && echo "Killed." ! rm -f ${pidfile} } tomcat_wait_max_for_pid() { _timeout=$1 shift --- 116,155 ---- pid_touch () { touch $pidfile chown $tomcat60_user $pidfile + chmod u=rw,g=+r,o=+r $pidfile } tomcat60_stop() { rc_pid=$(check_pidfile $pidfile $procname) if [ -z "$rc_pid" ]; then [ -n "$rc_fast" ] && return 0 if [ -n "$pidfile" ]; then ! if [ -s "$pidfile" ]; then ! read rc_pid < $pidfile ! if [ -z "$rc_pid" ]; then ! echo "${name} not running? (check $pidfile)." ! return 1 ! fi ! fi else echo "${name} not running?" + return 1 fi fi ! if [ -n "$rc_pid" ]; then ! echo "Stopping ${name}." ! ${java_command} stop ! tomcat_wait_max_for_pid ${tomcat60_stop_timeout} ${rc_pid} ! kill -KILL ${rc_pid} 2> /dev/null && echo "Killed." ! rm -f ${pidfile} ! else ! echo "${name} is not running." ! fi } tomcat_wait_max_for_pid() { _timeout=$1 shift --Apple-Mail-17-165607528-- From: Christer Solskogen To: Roger Gujord Cc: bug-followup@freebsd.org Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Wed, 2 Dec 2009 23:36:18 +0100 On Wed, Dec 2, 2009 at 11:32 PM, Roger Gujord wrote: > The attached patch should solve the problem. > Thank you in advance for testing and reporting back :-) I was unable to use that patch. tomcat# patch -p0 < patch Hmm... Looks like a new-style context diff to me... The text leading up to this was: -------------------------- |*** ../tomcat6 2009-12-02 13:08:51.000000000 +0000 |--- tomcat6 2009-12-02 22:20:57.000000000 +0000 -------------------------- Patching file tomcat6 using Plan A... Hunk #1 failed at 116. 1 out of 1 hunks failed--saving rejects to tomcat6.rej Hmm... Ignoring the trailing garbage. done -- chs, From: Roger Gujord To: bug-followup@FreeBSD.org, christer.solskogen@gmail.com Cc: Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Thu, 3 Dec 2009 00:27:23 +0100 --Apple-Mail-19-168886088 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Make sure you patch against the clean orginal file. Attached you'll find my "/usr/local/etc/rc.d/tomcat6" file with the = patched already applied. Thanks again for testing :-) --Apple-Mail-19-168886088 Content-Disposition: attachment; filename=tomcat6 Content-Type: application/octet-stream; name="tomcat6" Content-Transfer-Encoding: 7bit #!/bin/sh # # $FreeBSD: ports/www/tomcat6/files/tomcat6.sh.in,v 1.5 2009/07/29 17:13:50 ale Exp $ # # PROVIDE: tomcat60 # REQUIRE: NETWORKING SERVERS # BEFORE: DAEMON # KEYWORD: shutdown # # Configuration settings for tomcat60 in /etc/rc.conf: # # tomcat60_enable (bool): # Set to "NO" by default. # Set it to "YES" to enable tomcat60 # # tomcat60_flags (str): # Set to "" by default. # Extra flags passed to start command # # tomcat60_catalina_home (str) # Set to "/usr/local/apache-tomcat-6.0" by default. # Set the CATALINA_HOME variable for the Tomcat process # # tomcat60_catalina_base (str) # Set to "/usr/local/apache-tomcat-6.0" by default. # Set the CATALINA_BASE variable for the Tomcat process # # tomcat60_catalina_tmpdir (str) # Set to "/usr/local/apache-tomcat-6.0/temp" by default. # Set the CATALINA_TMPDIR variable for the Tomcat process # # tomcat60_stdout_log (str) # Set to "/usr/local/apache-tomcat-6.0/logs/stdout.log" by default. # Set the location for the Tomcat process log (standard output) # # tomcat60_stderr_log (str) # Set to "/usr/local/apache-tomcat-6.0/logs/stderr.log" by default. # Set the location for the Tomcat process log (error output) # # tomcat60_stop_timeout (num) # Set to "10" by default. # Sets the timeout in seconds to allow tomcat to shutdown. # After the timeout has elapsed, tomcat will be killed. # # tomcat60_java_home (str): # tomcat60_java_vendor (str): # tomcat60_java_version (str): # tomcat60_java_os (str): # Specify the requirements of the Java VM to use. See javavm(1). # # tomcat60_classpath (str): # Set to "" by default. # Addtional classes to add to the CLASSPATH # # tomcat60_java_opts (str): # Set to "" by default. # Java VM args to use. # tomcat60_enable="${tomcat60_enable:-"NO"}" tomcat60_java_version="${tomcat60_java_version:-"1.5+"}" tomcat60_user="${tomcat60_user:-"www"}" tomcat60_catalina_home="${tomcat60_catalina_home:-"/usr/local/apache-tomcat-6.0"}" tomcat60_catalina_base="${tomcat60_catalina_base:-"/usr/local/apache-tomcat-6.0"}" tomcat60_catalina_tmpdir="${tomcat60_catalina_tmpdir:-"/usr/local/apache-tomcat-6.0/temp"}" tomcat60_stdout_log="${tomcat60_stdout_log:-"/usr/local/apache-tomcat-6.0/logs/stdout.log"}" tomcat60_stderr_log="${tomcat60_stderr_log:-"/usr/local/apache-tomcat-6.0/logs/stderr.log"}" tomcat60_stop_timeout="${tomcat60_stop_timeout:-"10"}" . /etc/rc.subr name="tomcat60" rcvar=`set_rcvar` pidfile="/var/run/tomcat60.pid" procname="java" load_rc_config "${name}" if [ -n "${tomcat60_java_home}" ] ; then export JAVA_HOME="${tomcat60_java_home}" fi if [ -n "${tomcat60_java_version}" ] ; then export JAVA_VERSION="${tomcat60_java_version}" fi if [ -n "${tomcat60_java_vendor}" ] ; then export JAVA_VENDOR="${tomcat60_java_vendor}" fi if [ -n "${tomcat60_java_os}" ] ; then export JAVA_OS="${tomcat60_java_os}" fi java_command="/usr/local/bin/java \ ${tomcat60_java_opts} \ -Djava.endorsed.dirs=/usr/local/apache-tomcat-6.0/endorsed \ -classpath /usr/local/apache-tomcat-6.0/bin/bootstrap.jar:${tomcat60_classpath} \ -Dcatalina.base=${tomcat60_catalina_base} \ -Dcatalina.home=${tomcat60_catalina_home} \ -Djava.io.tmpdir=${tomcat60_catalina_tmpdir} \ org.apache.catalina.startup.Bootstrap" log_args=">> ${tomcat60_stdout_log} \ 2>> ${tomcat60_stderr_log} " required_files="${tomcat60_catalina_home}/conf/server.xml" command="/usr/sbin/daemon" flags="-p ${pidfile} ${java_command} start ${tomcat60_flags} ${log_args}" start_precmd=pid_touch stop_cmd="tomcat60_stop" pid_touch () { touch $pidfile chown $tomcat60_user $pidfile chmod u=rw,g=+r,o=+r $pidfile } tomcat60_stop() { rc_pid=$(check_pidfile $pidfile $procname) if [ -z "$rc_pid" ]; then [ -n "$rc_fast" ] && return 0 if [ -n "$pidfile" ]; then if [ -s "$pidfile" ]; then read rc_pid < $pidfile if [ -z "$rc_pid" ]; then echo "${name} not running? (check $pidfile)." return 1 fi fi else echo "${name} not running?" return 1 fi fi if [ -n "$rc_pid" ]; then echo "Stopping ${name}." ${java_command} stop tomcat_wait_max_for_pid ${tomcat60_stop_timeout} ${rc_pid} kill -KILL ${rc_pid} 2> /dev/null && echo "Killed." rm -f ${pidfile} else echo "${name} is not running." fi } tomcat_wait_max_for_pid() { _timeout=$1 shift _pid=$1 _prefix= while [ $_timeout -gt 0 ] ; do echo -n ${_prefix:-"Waiting (max $_timeout secs) for PIDS: "}$_pid _prefix=", " sleep 2 kill -0 $_pid 2> /dev/null || break _timeout=$(($_timeout-2)) done if [ -n "$_prefix" ]; then echo "." fi } run_rc_command "$1" --Apple-Mail-19-168886088 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii -- Roger Gujord --Apple-Mail-19-168886088-- From: Christer Solskogen To: Roger Gujord Cc: bug-followup@freebsd.org Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Thu, 3 Dec 2009 13:07:17 +0100 On Thu, Dec 3, 2009 at 12:27 AM, Roger Gujord wrote: > Make sure you patch against the clean orginal file. > Attached you'll find my "/usr/local/etc/rc.d/tomcat6" file with the patched already applied. > Thanks again for testing :-) > Much better, this one works! :) Thanks for your time. -- chs Responsible-Changed-From-To: nemoliu->freebsd-ports-bus Responsible-Changed-By: linimon Responsible-Changed-When: Wed Dec 16 10:25:27 UTC 2009 Responsible-Changed-Why: Maintainer was reset due to inactivity. http://www.freebsd.org/cgi/query-pr.cgi?pr=140015 Responsible-Changed-From-To: freebsd-ports-bus->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Dec 16 10:27:33 UTC 2009 Responsible-Changed-Why: Don't laugh, the new keyboard is on order. http://www.freebsd.org/cgi/query-pr.cgi?pr=140015 Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: linimon Responsible-Changed-When: Thu Dec 17 08:04:04 UTC 2009 Responsible-Changed-Why: Over to new maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=140015 From: Alex Dupre To: bug-followup@FreeBSD.org, christer.solskogen@gmail.com Cc: Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Thu, 17 Dec 2009 11:16:01 +0100 Use the original rc script and set rc_debug="YES". Then report to me the output of the stop command. -- Alex Dupre From: Christer Solskogen To: Alex Dupre Cc: bug-followup@freebsd.org Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Thu, 17 Dec 2009 12:30:52 +0100 On Thu, Dec 17, 2009 at 11:16 AM, Alex Dupre wrote: > Use the original rc script and set rc_debug="YES". Then report to me the > output of the stop command. > /usr/local/etc/rc.d/tomcat6: DEBUG: checkyesno: tomcat60_enable is set to YES. /usr/local/etc/rc.d/tomcat6: DEBUG: run_rc_command: start_precmd: pid_touch Starting tomcat60. /usr/local/etc/rc.d/tomcat6: DEBUG: run_rc_command: doit: su -m www -c 'sh -c "/usr/sbin/daemon -p /var/run/tomcat60.pid /usr/local/bin/java -Djava.endorsed.dirs=/usr/local/apache-tomcat-6.0/endorsed -classpath /usr/local/apache-tomcat-6.0/bin/bootstrap.jar: -Dcatalina.base=/usr/local/apache-tomcat-6.0 -Dcatalina.home=/usr/local/apache-tomcat-6.0 -Djava.io.tmpdir=/usr/local/apache-tomcat-6.0/temp org.apache.catalina.startup.Bootstrap start >> /usr/local/apache-tomcat-6.0/logs/stdout.log 2>> /usr/local/apache-tomcat-6.0/logs/stderr.log "' tomcat# ps waux | grep java www 34257 54.9 0.8 1421152 69292 ?? SsJ 12:29PM 0:02.12 /usr/local/diablo-jdk1.6.0/bin/java -XX:MaxPermSize=256m -Djava.endorsed.dirs=/usr/local/apache-tomcat-6.0/endorsed -classpath /usr/local/apach root 34345 0.0 0.0 8004 1092 7 RL+J 12:29PM 0:00.00 grep java tomcat# /usr/local/etc/rc.d/tomcat6 stop /usr/local/etc/rc.d/tomcat6: DEBUG: checkyesno: tomcat60_enable is set to YES. /usr/local/etc/rc.d/tomcat6: DEBUG: run_rc_command: doit: tomcat60_stop tomcat60 not running? (check /var/run/tomcat60.pid). cat /var/run/tomcat60.pid 34257 -- chs, From: Eric Krausser To: bug-followup@FreeBSD.org, christer.solskogen@gmail.com, ale@FreeBSD.org Cc: Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Thu, 31 Dec 2009 15:44:14 +0100 /usr/local/etc/rc.d/tomcat6: ... procname="java" ... tomcat60_stop() { rc_pid=$(check_pidfile $pidfile $procname) ... The command "check_pidfile" (from /etc/rc.subr) doesn't find "java" in the list of processes. If I change procname="java" to procname="/usr/local/diablo-jdk1.6.0/bin/java" the script shuts tomcat down as expected. Sure, no solution, but I hope this helps to solve this nasty problem. The pidfile with it's permissions seems fine anyway. Eric From: Christer Solskogen To: bug-followup@FreeBSD.org, christer.solskogen@gmail.com Cc: Subject: Re: ports/140015: Unable to stop www/tomcat6 from rc.d Date: Mon, 01 Mar 2010 15:30:59 +0100 Anyone up for commiting the patch? State-Changed-From-To: open->closed State-Changed-By: ale State-Changed-When: Mon Mar 1 15:38:31 UTC 2010 State-Changed-Why: Should be fixed now. http://www.freebsd.org/cgi/query-pr.cgi?pr=140015 From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/140015: commit references a PR Date: Mon, 1 Mar 2010 15:37:01 +0000 (UTC) ale 2010-03-01 15:36:47 UTC FreeBSD ports repository Modified files: www/tomcat6 Makefile distinfo www/tomcat6/files tomcat6.sh.in Log: - Update to 6.0.24 release [1] - Fix rc.d stop script [2] PR: ports/144274 [1], ports/140015 [2] Submitted by: wen [1], Christer Solskogen [2] Feature safe: yes Revision Changes Path 1.55 +1 -2 ports/www/tomcat6/Makefile 1.26 +3 -3 ports/www/tomcat6/distinfo 1.6 +27 -9 ports/www/tomcat6/files/tomcat6.sh.in _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" >Unformatted: