2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-12-04 18:44:41 +00:00

Merge pull request #24 from jufm/initscript

Make init script properly indicate error conditions.
This commit is contained in:
Jarrod Johnson 2015-09-21 16:30:02 -04:00
commit 4dcfaf7363

View File

@ -11,9 +11,11 @@
if [ -f /etc/init.d/functions ]; then
. /etc/init.d/functions
LOG_SUCCESS=success
LOG_FAILURE=failure
elif [ -f /lib/lsb/init-functions ]; then
. /lib/lsb/init-functions
LOG_SUCCESS=log_success_msg
LOG_FAILURE=log_failure_msg
else
echo "Unknown platform"
exit 1
@ -35,9 +37,15 @@ stop() {
start() {
echo -n 'Starting Confluent: '
$confluent
$LOG_SUCCESS
echo
return
if [ $? -eq 0 ]; then
$LOG_SUCCESS
echo
return 0
else
$LOG_FAILURE
echo
return 1
fi
}
case $1 in