Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Feb 2021 22:06:59 +0000 (UTC)
From:      Juraj Lutter <otis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r565071 - in branches/2021Q1/textproc/elasticsearch6: . files
Message-ID:  <202102122206.11CM6x6P001228@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: otis
Date: Fri Feb 12 22:06:59 2021
New Revision: 565071
URL: https://svnweb.freebsd.org/changeset/ports/565071

Log:
  MFH: r565070
  
  textproc/elasticsearch6: Fix rc order
  
  It has been found that elasticsearch is being started in wrong phase of rc
  sequence.
  
  This should bring it to more apropriate place where all services, including
  cleartmp, are started.
  
  PR:		236840
  Reported by:	Nemesis11 <felix@zwame.pt>
  Reviewed by:	osa (mentor), swills
  Approved by:	osa (mentor)
  Differential Revision:	https://reviews.freebsd.org/D27874

Modified:
  branches/2021Q1/textproc/elasticsearch6/Makefile
  branches/2021Q1/textproc/elasticsearch6/files/elasticsearch.in
Directory Properties:
  branches/2021Q1/   (props changed)

Modified: branches/2021Q1/textproc/elasticsearch6/Makefile
==============================================================================
--- branches/2021Q1/textproc/elasticsearch6/Makefile	Fri Feb 12 22:01:23 2021	(r565070)
+++ branches/2021Q1/textproc/elasticsearch6/Makefile	Fri Feb 12 22:06:59 2021	(r565071)
@@ -3,10 +3,9 @@
 
 PORTNAME=	elasticsearch
 PORTVERSION=	6.8.13
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	textproc java devel
-MASTER_SITES=	https://artifacts.elastic.co/downloads/${PORTNAME}/ \
-		https://ftp.sk.freebsd.org/pub/local/distfiles/
+MASTER_SITES=	https://artifacts.elastic.co/downloads/${PORTNAME}/
 PKGNAMESUFFIX=	6
 
 MAINTAINER=	elastic@FreeBSD.org

Modified: branches/2021Q1/textproc/elasticsearch6/files/elasticsearch.in
==============================================================================
--- branches/2021Q1/textproc/elasticsearch6/files/elasticsearch.in	Fri Feb 12 22:01:23 2021	(r565070)
+++ branches/2021Q1/textproc/elasticsearch6/files/elasticsearch.in	Fri Feb 12 22:06:59 2021	(r565071)
@@ -3,8 +3,8 @@
 # $FreeBSD$
 #
 # PROVIDE: elasticsearch
-# REQUIRE: NETWORKING SERVERS
-# BEFORE: DAEMON
+# REQUIRE: DAEMON
+# BEFORE: LOGIN
 # KEYWORD: shutdown
 #
 # Add the following line to /etc/rc.conf to enable elasticsearch:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102122206.11CM6x6P001228>