From owner-svn-ports-all@freebsd.org Sat Jun 13 22:41:05 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 36D66344765; Sat, 13 Jun 2020 22:41:05 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49ksy90mbyz4YkP; Sat, 13 Jun 2020 22:41:05 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1594522542; Sat, 13 Jun 2020 22:41:05 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05DMf4wM010896; Sat, 13 Jun 2020 22:41:04 GMT (envelope-from glewis@FreeBSD.org) Received: (from glewis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05DMf49J010895; Sat, 13 Jun 2020 22:41:04 GMT (envelope-from glewis@FreeBSD.org) Message-Id: <202006132241.05DMf49J010895@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glewis set sender to glewis@FreeBSD.org using -f From: Greg Lewis Date: Sat, 13 Jun 2020 22:41:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r538703 - head/textproc/elasticsearch7/files X-SVN-Group: ports-head X-SVN-Commit-Author: glewis X-SVN-Commit-Paths: head/textproc/elasticsearch7/files X-SVN-Commit-Revision: 538703 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2020 22:41:05 -0000 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 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