aboutsummaryrefslogtreecommitdiff
blob: ee577f0f00deafd52677e9818e15331938c92ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
	need net
}

start() {
	ebegin "Starting neo4j"
	start-stop-daemon --start --quiet --exec /opt/bin/neo4j -- start >/dev/null 2>&1
	eend $?
}

stop() {
	ebegin "Stopping neo4j"
	/opt/bin/neo4j stop >/dev/null 2>&1
	eend $?
}