From a543cf0d8dc383be15010086c30e70ad04afa6af Mon Sep 17 00:00:00 2001 From: Leonardo Martins Date: Tue, 24 Apr 2012 14:42:23 -0300 Subject: Renamed package dev-db/neo4j back to dev-db/neo4j-community for the sake of simplicity --- dev-db/neo4j-community/files/neo4j.init | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 dev-db/neo4j-community/files/neo4j.init (limited to 'dev-db/neo4j-community/files/neo4j.init') diff --git a/dev-db/neo4j-community/files/neo4j.init b/dev-db/neo4j-community/files/neo4j.init new file mode 100644 index 0000000..846a001 --- /dev/null +++ b/dev-db/neo4j-community/files/neo4j.init @@ -0,0 +1,34 @@ +#!/sbin/runscript +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +extra_commands="info" + +NEO4J="/opt/bin/neo4j" + +depend() { + need net +} + +start() { + ebegin "Starting neo4j" + start-stop-daemon --start --quiet --exec ${NEO4J} start + eend $? +} + +stop() { + ebegin "Stopping neo4j" + ${NEO4J} stop >/dev/null 2>&1 + eend $? +} + +restart() { + ebegin "Restarting neo4j" + ${NEO4J} restart >/dev/null 2>&1 + eend $? +} + +info() { + ${NEO4J} info +} -- cgit v1.2.3-65-gdbad