You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-apps/zeppelin-bin/files/zeppelin.init.d

20 lines
492 B

#!/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 $?
}