mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 20:50:31 -04:00
Submitted by: Radek Krejca PR: ports/216547 Submitted by: Alistair Meney <atmeney@gmail.com>
39 lines
649 B
Bash
39 lines
649 B
Bash
#!/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
|