diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-09-23 19:42:17 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-09-23 21:01:09 +0200 |
commit | 8cb16e67009aaf16c88512eeb7fc1e6defd610bc (patch) | |
tree | c6cdde31a3d12bd0900fcf9eea1cfe72d152eccf /net-misc/kafka-bin | |
parent | media-plugins/vdr-epgsearch: remove unused patches (diff) | |
download | gentoo-8cb16e67009aaf16c88512eeb7fc1e6defd610bc.tar.gz gentoo-8cb16e67009aaf16c88512eeb7fc1e6defd610bc.tar.bz2 gentoo-8cb16e67009aaf16c88512eeb7fc1e6defd610bc.zip |
net-misc/kafka-bin: remove unused file
Closes: https://github.com/gentoo/gentoo/pull/22373
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-misc/kafka-bin')
-rw-r--r-- | net-misc/kafka-bin/files/kafka.init.d.4 | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/net-misc/kafka-bin/files/kafka.init.d.4 b/net-misc/kafka-bin/files/kafka.init.d.4 deleted file mode 100644 index 064821f669de..000000000000 --- a/net-misc/kafka-bin/files/kafka.init.d.4 +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -description="Kafka distributed messaging system" - -logfile="/var/log/kafka/kafka.log" - -command="/opt/kafka/bin/kafka-server-start.sh" -command_args="/etc/kafka/server.properties" - -command_background=yes -pidfile=/run/kafka.pid - -start() { - ebegin "Starting kafka ..." - start-stop-daemon --start --background --user kafka --chdir /opt/kafka --stdout $logfile --stderr $logfile \ - -m --env KAFKA_HEAP_OPTS="${KAFKA_HEAP_OPTS}" \ - --pidfile $pidfile --exec /opt/kafka/bin/kafka-server-start.sh -- /etc/kafka/server.properties - eend $? -} -depend() { - after zookeeper kafka-zookeeper -} |