diff options
author | Juraj Lutter <otis@FreeBSD.org> | 2021-02-12 22:01:23 +0000 |
---|---|---|
committer | Juraj Lutter <otis@FreeBSD.org> | 2021-02-12 22:01:23 +0000 |
commit | 4ce94d08f1ba64117bcaf89d527b283d2df609c1 (patch) | |
tree | 088497b80d8576bc58554c62479766999944726f /textproc/elasticsearch6/files/elasticsearch.in | |
parent | Chase removal of implicit dbus dependency. (diff) |
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)
MFH: 2021Q1
Differential Revision: https://reviews.freebsd.org/D27874
Diffstat (limited to 'textproc/elasticsearch6/files/elasticsearch.in')
-rw-r--r-- | textproc/elasticsearch6/files/elasticsearch.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/elasticsearch6/files/elasticsearch.in b/textproc/elasticsearch6/files/elasticsearch.in index eea1d22a44f8..ddf5938e2eba 100644 --- a/textproc/elasticsearch6/files/elasticsearch.in +++ b/textproc/elasticsearch6/files/elasticsearch.in @@ -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: |