aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Martins <leonardo@venidera.com>2012-04-24 14:22:35 -0300
committerLeonardo Martins <leonardo@venidera.com>2012-04-24 14:22:35 -0300
commit8ab30466aad5f93697d916fcdaa029a13708c7ae (patch)
treedb9405b8e218ef0fe3139a9357dd42d38d93ec58 /dev-db/neo4j-community/files/neo4j.init
parentAdded patches for Gentoo-style configuration path (diff)
downloadvenidera-8ab30466aad5f93697d916fcdaa029a13708c7ae.tar.gz
venidera-8ab30466aad5f93697d916fcdaa029a13708c7ae.tar.bz2
venidera-8ab30466aad5f93697d916fcdaa029a13708c7ae.zip
Renamed dev-db/neo4j-community to dev-db/neo4j
Diffstat (limited to 'dev-db/neo4j-community/files/neo4j.init')
-rw-r--r--dev-db/neo4j-community/files/neo4j.init34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-db/neo4j-community/files/neo4j.init b/dev-db/neo4j-community/files/neo4j.init
deleted file mode 100644
index 846a001..0000000
--- a/dev-db/neo4j-community/files/neo4j.init
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/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
-}