From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 17 00:20:04 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 942D7106564A for ; Fri, 17 Sep 2010 00:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 695048FC0A for ; Fri, 17 Sep 2010 00:20:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o8H0K4RH060786 for ; Fri, 17 Sep 2010 00:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o8H0K4ow060785; Fri, 17 Sep 2010 00:20:04 GMT (envelope-from gnats) Date: Fri, 17 Sep 2010 00:20:04 GMT Message-Id: <201009170020.o8H0K4ow060785@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jason Cc: Subject: Re: ports/150576: [patch] www/tomcat55: fix packaging/rc script and add license dialog X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jason List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2010 00:20:04 -0000 The following reply was made to PR ports/150576; it has been noted by GNATS. From: Jason To: bug-followup@freebsd.org Cc: Subject: Re: ports/150576: [patch] www/tomcat55: fix packaging/rc script and add license dialog Date: Thu, 16 Sep 2010 17:15:51 -0700 --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline fixing another pkg permission for startup issues, this patch cat be applied to previous patch -jgh --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" Index: files/pkg-install.in =================================================================== --- files/pkg-install.in (revision 275) +++ files/pkg-install.in (working copy) @@ -19,6 +19,7 @@ MKDIR="/bin/mkdir -p" LN="/bin/ln" CHOWN="/usr/sbin/chown" +CHMOD="/bin/chmod" FIND="/usr/bin/find" ECHO="/bin/echo" @@ -867,6 +868,7 @@ ${ECHO} -n ">> Fixing ownership settings..." ${CHOWN} -R ${USER}:${GROUP} ${APP_HOME}/conf ${APP_HOME}/logs ${APP_HOME}/temp ${APP_HOME}/work ${APP_HOME}/webapps + ${CHMOD} -R a+r ${APP_HOME}/common ${APP_HOME}/server ${APP_HOME}/bin ${ECHO} " [ DONE ]" ${ECHO} -n ">> Fixing permissions..." --zYM0uCDKw75PZbzx--