Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Jun 2020 22:41:04 +0000 (UTC)
From:      Greg Lewis <glewis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r538703 - head/textproc/elasticsearch7/files
Message-ID:  <202006132241.05DMf49J010895@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glewis
Date: Sat Jun 13 22:41:04 2020
New Revision: 538703
URL: https://svnweb.freebsd.org/changeset/ports/538703

Log:
  Fix config path message in rc script
  
  PR:		246303
  Submitted by:	Sven R <admin@hackacad.net>

Modified:
  head/textproc/elasticsearch7/files/elasticsearch.in

Modified: head/textproc/elasticsearch7/files/elasticsearch.in
==============================================================================
--- head/textproc/elasticsearch7/files/elasticsearch.in	Sat Jun 13 21:05:03 2020	(r538702)
+++ head/textproc/elasticsearch7/files/elasticsearch.in	Sat Jun 13 22:41:04 2020	(r538703)
@@ -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?202006132241.05DMf49J010895>