[Fix] Move test case to respect alphabetic order

This commit is contained in:
samuel 2023-05-09 15:10:57 +02:00
parent 40324e5be9
commit d5ca04a90d
1 changed files with 5 additions and 5 deletions

View File

@ -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
)