From d5ca04a90d7a46d7f69bf2d7019c885db67e955f Mon Sep 17 00:00:00 2001 From: samuel Date: Tue, 9 May 2023 15:10:57 +0200 Subject: [PATCH] [Fix] Move test case to respect alphabetic order --- src/runner.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/runner.sh b/src/runner.sh index 9d71950..fb35a30 100755 --- a/src/runner.sh +++ b/src/runner.sh @@ -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 )