svn commit: r555233 - in head/textproc/elasticsearch6: . files

Mikael Urankar mikael at FreeBSD.org
Sun Nov 15 15:48:27 UTC 2020


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
 


More information about the svn-ports-all mailing list