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/net-misc/kafka-bin/files/kafka-zookeeper.init.d

20 lines
506 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description="Zookeeper for Kafka distributed messaging system"
logfile="/var/log/kafka-zookeeper.log"
command="/opt/kafka/bin/zookeeper-server-start.sh"
command_args="/etc/kafka/zookeeper.properties"
start_stop_daemon_args="--chdir /opt/kafka --stdout $logfile --stderr $logfile"
command_background=yes
pidfile=/run/kafka-zookeeper.pid
depend() {
need net
after bootmisc
}