svn commit: r538703 - head/textproc/elasticsearch7/files

Greg Lewis glewis at FreeBSD.org
Sat Jun 13 22:41:05 UTC 2020


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 at 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
 


More information about the svn-ports-all mailing list