summaryrefslogtreecommitdiff
path: root/www-apps/zeppelin-bin/files/zeppelin.init.d
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-03-24 17:44:59 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-03-24 17:44:59 +0000
commit0706fc6986773f4e4d391deff4ad5143c464ea4e (patch)
tree9fd110f9fc996e8a4213eeda994a8c112491b86d /www-apps/zeppelin-bin/files/zeppelin.init.d
parentaa3411e241a201d53a2689766fe419f2756819f3 (diff)
Revert "gentoo resync : 24.03.2019"
This reverts commit aa3411e241a201d53a2689766fe419f2756819f3.
Diffstat (limited to 'www-apps/zeppelin-bin/files/zeppelin.init.d')
-rw-r--r--www-apps/zeppelin-bin/files/zeppelin.init.d19
1 files changed, 0 insertions, 19 deletions
diff --git a/www-apps/zeppelin-bin/files/zeppelin.init.d b/www-apps/zeppelin-bin/files/zeppelin.init.d
deleted file mode 100644
index 03ddd6beabc7..000000000000
--- a/www-apps/zeppelin-bin/files/zeppelin.init.d
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-description="Web-based interactive data analytics notebook launcher"
-command="/opt/zeppelin/bin/zeppelin-daemon.sh"
-logfile="/var/log/zeppelin/zeppelin-gentoo.log"
-
-start() {
- ebegin "Starting Apache Zeppelin ..."
- bash $command start >> $logfile
- eend $?
-}
-
-stop() {
- ebegin "Stopping Apache Zeppelin ..."
- bash $command stop >> $logfile
- eend $?
-}