[
https://issues.apache.org/jira/browse/ZOOKEEPER-1212?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Roman Shaposhnik updated ZOOKEEPER-1212:
----------------------------------------
Attachment: ZOOKEEPER-1212-3.3.patch.txt
> zkServer.sh stop action is not conformat with LSB para
> 20.2 Init Script Actions
> -------------------------------------------------------------------------------
>
> Key: ZOOKEEPER-1212
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-1212
> Project: ZooKeeper
> Issue Type: Bug
> Components: scripts
> Affects Versions: 3.3.3, 3.4.0, 3.5.0
> Reporter: Roman Shaposhnik
> Assignee: Roman Shaposhnik
> Fix For: 3.3.4, 3.4.0, 3.5.0
>
> Attachments: ZOOKEEPER-1212-3.3.patch.txt, ZOOKEEPER-1212.patch.txt
>
>
> According to LSB Core para 20.2:
> ==================================================================================
> Otherwise, the exit status shall be nonzero, as defined below.
> In addition to straightforward success, the following situations are
> also to be considered successful:
> •
> restarting a service (instead of reloading it) with the forcereload argument
> • running start on a service already running
> • running stop on a service already stopped or not running
> • running restart on a service already stopped or not running
> • running tryrestart on a service already stopped or not running
> ==================================================================================
> Yet, zkServer.sh fails on stop if it can't find a PID file:
> {noformat}
> stop)
> echo -n "Stopping zookeeper ... "
> if [ ! -f "$ZOOPIDFILE" ]
> then
> echo "error: could not find file $ZOOPIDFILE"
> exit 1
> else
> $KILL -9 $(cat "$ZOOPIDFILE")
> rm "$ZOOPIDFILE"
> echo STOPPED
> exit 0
> fi
> {noformat}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira