Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/kafka-bin/files/
Date: Thu, 23 Sep 2021 19:02:12
Message-Id: 1632423669.8cb16e67009aaf16c88512eeb7fc1e6defd610bc.conikost@gentoo
1 commit: 8cb16e67009aaf16c88512eeb7fc1e6defd610bc
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Thu Sep 23 17:42:17 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 23 19:01:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cb16e67
7
8 net-misc/kafka-bin: remove unused file
9
10 Closes: https://github.com/gentoo/gentoo/pull/22373
11 Package-Manager: Portage-3.0.23, Repoman-3.0.3
12 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 net-misc/kafka-bin/files/kafka.init.d.4 | 24 ------------------------
16 1 file changed, 24 deletions(-)
17
18 diff --git a/net-misc/kafka-bin/files/kafka.init.d.4 b/net-misc/kafka-bin/files/kafka.init.d.4
19 deleted file mode 100644
20 index 064821f669d..00000000000
21 --- a/net-misc/kafka-bin/files/kafka.init.d.4
22 +++ /dev/null
23 @@ -1,24 +0,0 @@
24 -#!/sbin/openrc-run
25 -# Copyright 1999-2018 Gentoo Foundation
26 -# Distributed under the terms of the GNU General Public License v2
27 -
28 -description="Kafka distributed messaging system"
29 -
30 -logfile="/var/log/kafka/kafka.log"
31 -
32 -command="/opt/kafka/bin/kafka-server-start.sh"
33 -command_args="/etc/kafka/server.properties"
34 -
35 -command_background=yes
36 -pidfile=/run/kafka.pid
37 -
38 -start() {
39 - ebegin "Starting kafka ..."
40 - start-stop-daemon --start --background --user kafka --chdir /opt/kafka --stdout $logfile --stderr $logfile \
41 - -m --env KAFKA_HEAP_OPTS="${KAFKA_HEAP_OPTS}" \
42 - --pidfile $pidfile --exec /opt/kafka/bin/kafka-server-start.sh -- /etc/kafka/server.properties
43 - eend $?
44 -}
45 -depend() {
46 - after zookeeper kafka-zookeeper
47 -}