Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Nov 2020 15:48:26 +0000 (UTC)
From:      Mikael Urankar <mikael@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r555233 - in head/textproc/elasticsearch6: . files
Message-ID:  <202011151548.0AFFmQIP020971@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mikael
Date: Sun Nov 15 15:48:26 2020
New Revision: 555233
URL: https://svnweb.freebsd.org/changeset/ports/555233

Log:
  textproc/elasticsearch6: Fix messages in rc.d script
  
  PR:		250969, 234157
  Submitted by:	Juraj Lutter (maintainer)
  Reported by:	Sven R

Modified:
  head/textproc/elasticsearch6/Makefile
  head/textproc/elasticsearch6/files/elasticsearch.in

Modified: head/textproc/elasticsearch6/Makefile
==============================================================================
--- head/textproc/elasticsearch6/Makefile	Sun Nov 15 15:45:38 2020	(r555232)
+++ head/textproc/elasticsearch6/Makefile	Sun Nov 15 15:48:26 2020	(r555233)
@@ -3,6 +3,7 @@
 
 PORTNAME=	elasticsearch
 PORTVERSION=	6.8.13
+PORTREVISION=	1
 CATEGORIES=	textproc java devel
 MASTER_SITES=	https://artifacts.elastic.co/downloads/${PORTNAME}/ \
 		https://ftp.sk.freebsd.org/pub/local/distfiles/

Modified: head/textproc/elasticsearch6/files/elasticsearch.in
==============================================================================
--- head/textproc/elasticsearch6/files/elasticsearch.in	Sun Nov 15 15:45:38 2020	(r555232)
+++ head/textproc/elasticsearch6/files/elasticsearch.in	Sun Nov 15 15:48:26 2020	(r555233)
@@ -115,15 +115,15 @@ else
 fi
 
 if [ "x${elasticsearch_mem_min}" != "x" ]; then
-    echo "The elasticsearch_mem_min variable is no longer supported please set this in %%PREFIX%%/etc/jvm.options"
+    echo "The elasticsearch_mem_min variable is no longer supported please set this in ${elasticsearch_config}/jvm.options"
     exit 1;
 fi
 if [ "x${elasticsearch_mem_max}" != "x" ]; then
-    echo "The elasticsearch_mem_max variable is no longer supported please set this in %%PREFIX%%/etc/jvm.options"
+    echo "The elasticsearch_mem_max variable is no longer supported please set this in ${elasticsearch_config}/jvm.options"
     exit 1;
 fi
 if [ "x${elasticsearch_props}" != "x" ]; then
-    echo "The elasticsearch_props variable is no longer supported please set this in %%PREFIX%%/etc/jvm.options"
+    echo "The elasticsearch_props variable is no longer supported please set this in ${elasticsearch_config}/jvm.options"
     exit 1;
 fi
 



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