Issue #7182 having running() delete the state file where it previously only deleted the pid file. (#7184)
* Issue #7182 changing approach from deleting the state file consistently to simply grep'ing for last line in JETTY_STATE file Signed-off-by: Ian Rifkin <ianrifkin@ianrifkin.com>
This commit is contained in:
parent
7b648f6d5c
commit
9da5c21ea3
|
@ -136,9 +136,9 @@ started()
|
|||
for ((T = 0; T < $(($3 / 4)); T++))
|
||||
do
|
||||
sleep 4
|
||||
[ -z "$(grep STARTED $1 2>/dev/null)" ] || return 0
|
||||
[ -z "$(grep STOPPED $1 2>/dev/null)" ] || return 1
|
||||
[ -z "$(grep FAILED $1 2>/dev/null)" ] || return 1
|
||||
[ -z "$(tail -1 $1 | grep STARTED 2>/dev/null)" ] || return 0
|
||||
[ -z "$(tail -1 $1 | grep STOPPED 2>/dev/null)" ] || return 1
|
||||
[ -z "$(tail -1 $1 | grep FAILED 2>/dev/null)" ] || return 1
|
||||
local PID=$(cat "$2" 2>/dev/null) || return 1
|
||||
kill -0 "$PID" 2>/dev/null || return 1
|
||||
echo -n ". "
|
||||
|
|
Loading…
Reference in New Issue