[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.
|
||||
case "${action}" in
|
||||
test)
|
||||
# Stop now if we are only testing.
|
||||
log_info "Configuration OK."
|
||||
exit 0
|
||||
;;
|
||||
start)
|
||||
if [ ! -S "${deployer_sock}" ]; then
|
||||
fail "Sock deployer_sock='${deployer_sock}' does not exist." \
|
||||
|
@ -546,11 +551,6 @@ main() (
|
|||
fi
|
||||
rm --force "${runner_sock}"
|
||||
;;
|
||||
test)
|
||||
# Stop now if we are only testing.
|
||||
log_info "Configuration OK."
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue