[Fix] Move test case to respect alphabetic order
This commit is contained in:
parent
40324e5be9
commit
d5ca04a90d
|
@ -501,6 +501,11 @@ main() (
|
||||||
|
|
||||||
# Run chosen action.
|
# Run chosen action.
|
||||||
case "${action}" in
|
case "${action}" in
|
||||||
|
test)
|
||||||
|
# Stop now if we are only testing.
|
||||||
|
log_info "Configuration OK."
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
start)
|
start)
|
||||||
if [ ! -S "${deployer_sock}" ]; then
|
if [ ! -S "${deployer_sock}" ]; then
|
||||||
fail "Sock deployer_sock='${deployer_sock}' does not exist." \
|
fail "Sock deployer_sock='${deployer_sock}' does not exist." \
|
||||||
|
@ -546,11 +551,6 @@ main() (
|
||||||
fi
|
fi
|
||||||
rm --force "${runner_sock}"
|
rm --force "${runner_sock}"
|
||||||
;;
|
;;
|
||||||
test)
|
|
||||||
# Stop now if we are only testing.
|
|
||||||
log_info "Configuration OK."
|
|
||||||
exit 0
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue