2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00

Init script modifications for SLES

This commit is contained in:
Jarrod Johnon 2014-11-04 12:49:31 -05:00
parent 1e8aca1c26
commit 74a83a4502

View File

@ -8,25 +8,34 @@
# Default-Start: 3 4 5
# Default-Stop: 0 1 2 6
### END INIT INFO
if [ -f /etc/init.d/functions ]; then
. /etc/init.d/functions
LOG_SUCCESS=RHSuccess
elif [ -f /lib/lsb/init-functions ]; then
. /lib/lsb/init-functions
LOG_SUCCESS=log_success_msg
else
echo "Unknown platform"
exit 1
fi
. /etc/init.d/functions
case $1 in
restart)
echo -n 'Stopping Confluent '
/opt/confluent/bin/confetty shutdown /
echo -n 'Starting Confluent '
/opt/confluent/bin/confluent
success
$LOG_SUCCESS
;;
start)
echo -n 'Starting Confluent '
/opt/confluent/bin/confluent
success
$LOG_SUCCESS
;;
stop)
echo -n 'Stopping Confluent '
/opt/confluent/bin/confetty shutdown /
success
$LOG_SUCCESS
;;
esac