svn commit: r565070 - in head/textproc/elasticsearch6: . files

Juraj Lutter otis at FreeBSD.org
Fri Feb 12 22:01:23 UTC 2021


Author: otis
Date: Fri Feb 12 22:01:23 2021
New Revision: 565070
URL: https://svnweb.freebsd.org/changeset/ports/565070

Log:
  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 at zwame.pt>
  Reviewed by:	osa (mentor), swills
  Approved by:	osa (mentor)
  MFH:		2021Q1
  Differential Revision:	https://reviews.freebsd.org/D27874

Modified:
  head/textproc/elasticsearch6/Makefile
  head/textproc/elasticsearch6/files/elasticsearch.in

Modified: head/textproc/elasticsearch6/Makefile
==============================================================================
--- head/textproc/elasticsearch6/Makefile	Fri Feb 12 21:34:00 2021	(r565069)
+++ head/textproc/elasticsearch6/Makefile	Fri Feb 12 22:01:23 2021	(r565070)
@@ -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 at FreeBSD.org

Modified: head/textproc/elasticsearch6/files/elasticsearch.in
==============================================================================
--- head/textproc/elasticsearch6/files/elasticsearch.in	Fri Feb 12 21:34:00 2021	(r565069)
+++ head/textproc/elasticsearch6/files/elasticsearch.in	Fri Feb 12 22:01:23 2021	(r565070)
@@ -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:


More information about the svn-ports-all mailing list