Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Sep 2013 21:00:00 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-java@FreeBSD.org
Subject:   Re: ports/179927: commit references a PR
Message-ID:  <201309082100.r88L007L018308@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/179927; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/179927: commit references a PR
Date: Sun,  8 Sep 2013 20:56:44 +0000 (UTC)

 Author: crees
 Date: Sun Sep  8 20:56:37 2013
 New Revision: 326770
 URL: http://svnweb.freebsd.org/changeset/ports/326770
 
 Log:
   The format for bind.address has changed, so document and alert users.
   
   At the same time, fix some errors for logging in the rc script.
   
   PR:		ports/179927
   Submitted by:	Alexander Yerenkow <yerenkow@gmail.com> (maintainer)
 
 Added:
   head/java/jboss72/pkg-message   (contents, props changed)
 Modified:
   head/java/jboss72/Makefile
   head/java/jboss72/files/jboss72.in
 
 Modified: head/java/jboss72/Makefile
 ==============================================================================
 --- head/java/jboss72/Makefile	Sun Sep  8 20:01:03 2013	(r326769)
 +++ head/java/jboss72/Makefile	Sun Sep  8 20:56:37 2013	(r326770)
 @@ -55,6 +55,9 @@ do-build:
  do-install:
  	${MKDIR} ${PREFIX}/${DISTNAME} && cd ${JBOSSOUTPUT} && ${FIND} . | ${CPIO} -pdmu -R ${USER}:${GROUP} ${PREFIX}/${DISTNAME}
  
 +post-install:
 +	@${CAT} ${PKGMESSAGE}
 +
  .include <bsd.port.pre.mk>
  
  .if ${OSVERSION} < 800000
 
 Modified: head/java/jboss72/files/jboss72.in
 ==============================================================================
 --- head/java/jboss72/files/jboss72.in	Sun Sep  8 20:01:03 2013	(r326769)
 +++ head/java/jboss72/files/jboss72.in	Sun Sep  8 20:56:37 2013	(r326770)
 @@ -11,9 +11,9 @@
  
  # Add the following lines to /etc/rc.conf to enable %%APP_SHORTNAME%%:
  # %%APP_SHORTNAME%%_enable (bool):      Set to "YES" to enable %%APP_SHORTNAME%%
 -# %%APP_SHORTNAME%%_jvm_opts (str):     Extra JVM flags.
  # %%APP_SHORTNAME%%_args (str):         Optional arguments to JBoss
 -# %%APP_SHORTNAME%%_logging (str)       JBoss log output. A pipe command may be used.
 +# %%APP_SHORTNAME%%_log_stdout (str)       JBoss log output stdout, filename.
 +# %%APP_SHORTNAME%%_log_stderr (str)       JBoss log output stderr, filename.
  #
  
  . /etc/rc.subr
 @@ -24,7 +24,9 @@ rcvar=%%APP_SHORTNAME%%_enable
  load_rc_config $name
  
  %%APP_SHORTNAME%%_enable="${%%APP_SHORTNAME%%_enable:-"NO"}"
 -%%APP_SHORTNAME%%_logging="${%%APP_SHORTNAME%%_logging:-">> ${%%APP_SHORTNAME%%_logdir}/stdout.log 2>> ${%%APP_SHORTNAME%%_logdir}/stderr.log"}"
 +%%APP_SHORTNAME%%_log_stdout="${%%APP_SHORTNAME%%_log_stdout:-"${%%APP_SHORTNAME%%_logdir}/stdout.log"}"
 +%%APP_SHORTNAME%%_log_stderr="${%%APP_SHORTNAME%%_log_stderr:-"${%%APP_SHORTNAME%%_logdir}/stderr.log"}"
 +%%APP_SHORTNAME%%_args="${%%APP_SHORTNAME%%_args:-""}"
  %%APP_SHORTNAME%%_sleep="${%%APP_SHORTNAME%%_sleep:-"5"}"
  %%APP_SHORTNAME%%_kill9="${%%APP_SHORTNAME%%_kill9:-""}"
  %%APP_SHORTNAME%%_additional_killall="${%%APP_SHORTNAME%%_additional_killall:-""}"
 @@ -45,7 +47,7 @@ JBOSS_HOME="%%APP_HOME%%"
  	fi
  
  	echo "Starting %%APP_SHORTNAME%%."
 -	daemon -u ${%%APP_SHORTNAME%%_user} ${JBOSS_HOME}/bin/standalone.sh ${%%APP_SHORTNAME%%_logging} >> ${%%APP_SHORTNAME%%_logdir}/boot.log 2>> ${%%APP_SHORTNAME%%_logdir}/boot.log
 +	daemon -u ${%%APP_SHORTNAME%%_user} ${JBOSS_HOME}/bin/standalone.sh ${%%APP_SHORTNAME%%_args} >> ${%%APP_SHORTNAME%%_log_stdout} 2>> ${%%APP_SHORTNAME%%_log_stderr} >> ${%%APP_SHORTNAME%%_logdir}/boot.log 2>> ${%%APP_SHORTNAME%%_logdir}/boot.log
  
  	sleep ${%%APP_SHORTNAME%%_sleep}	# let daemon(8) and sh(1) finish before executing pgrep(1)
  	pgrep -U ${%%APP_SHORTNAME%%_user} -f ${JBOSS_HOME}/modules > ${pidfile}
 
 Added: head/java/jboss72/pkg-message
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/java/jboss72/pkg-message	Sun Sep  8 20:56:37 2013	(r326770)
 @@ -0,0 +1,8 @@
 +To make JBoss bind to all interfaces add this to /etc/rc.conf:
 +
 +jboss72_args="-Djboss.bind.address=0.0.0.0"
 +
 +Old format (-b 0.0.0.0 are not working in 7.2).
 +
 +You can also specify any other tunables which could be parsed by start scripts.
 +To change JVM args, edit appropriate standalone.conf.
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309082100.r88L007L018308>