From owner-svn-ports-all@freebsd.org Sun Nov 15 15:48:27 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 0930E2EC396; Sun, 15 Nov 2020 15:48:27 +0000 (UTC) (envelope-from mikael@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 4CYxSV6vSWz4VwN; Sun, 15 Nov 2020 15:48:26 +0000 (UTC) (envelope-from mikael@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 DFD631E2BD; Sun, 15 Nov 2020 15:48:26 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AFFmQHo020974; Sun, 15 Nov 2020 15:48:26 GMT (envelope-from mikael@FreeBSD.org) Received: (from mikael@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFFmQIP020971; Sun, 15 Nov 2020 15:48:26 GMT (envelope-from mikael@FreeBSD.org) Message-Id: <202011151548.0AFFmQIP020971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mikael set sender to mikael@FreeBSD.org using -f From: Mikael Urankar Date: Sun, 15 Nov 2020 15:48:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555233 - in head/textproc/elasticsearch6: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mikael X-SVN-Commit-Paths: in head/textproc/elasticsearch6: . files X-SVN-Commit-Revision: 555233 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.34 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: Sun, 15 Nov 2020 15:48:27 -0000 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