mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
39a56c19d0
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
40 lines
589 B
Bash
40 lines
589 B
Bash
#!/bin/sh
|
|
# Start/stop/restart Apache Zookeeper daemon
|
|
|
|
SERVER_CONFIG=(server.properties)
|
|
|
|
USER=kafka
|
|
kafka_start(){
|
|
for conf in ${SERVER_CONFIG[@]}; do
|
|
sudo -u ${USER} sh -c "/usr/bin/kafka-server-start.sh -daemon /etc/kafka/${conf}"
|
|
done
|
|
}
|
|
|
|
kafka_stop() {
|
|
sudo -u ${USER} sh -c "/usr/bin/kafka-server-stop.sh"
|
|
}
|
|
|
|
kafka_restart() {
|
|
kafka_start
|
|
sleep 1
|
|
kafka_stop
|
|
}
|
|
|
|
print_usage() {
|
|
echo "usage $0 start|stop|restart"
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
kafka_start
|
|
;;
|
|
'stop')
|
|
kafka_stop
|
|
;;
|
|
'restart')
|
|
kafka_restart
|
|
;;
|
|
*)
|
|
print_usage
|
|
;;
|
|
esac
|