blob: 31705c8a4362e074ae6cefb6365997228461fee4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh
# $FreeBSD$
#
# PROVIDE: neo4j
# REQUIRE: DAEMON
# KEYWORD: shutdown
# Add the following line to /etc/rc.conf to enable neo4j:
#
# neo4j_enable=YES
. /etc/rc.subr
name=neo4j
rcvar=neo4j_enable
desc="Graphing database"
load_rc_config $name
: ${neo4j_enable:=NO}
command=%%PREFIX%%/libexec/neo4j/neo4j
start_cmd="$command start"
start_precmd=neo4j_prestart
stop_cmd="$command stop"
status_cmd="$command status"
neo4j_prestart()
{
NEO4J_DATA=%%DATADIR%%
NEO4J_LIB=%%PREFIX%%/lib/neo4j
NEO4J_LOGS=/var/log/neo4j
NEO4J_PLUGINS=${NEO4J_LIB}/plugins
NEO4J_RUN=/var/run/neo4j
mkdir -p ${NEO4J_LOGS} ${NEO4J_RUN}
}
run_rc_command $1
|