From e0e4377f21f85824d8a70ec793a7c26c58f01f48 Mon Sep 17 00:00:00 2001 From: tainaCarvalho Date: Thu, 25 Jun 2026 15:31:06 -0300 Subject: [PATCH] mudando a ordem de execucao --- configure-host.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure-host.sh b/configure-host.sh index 4933cb9..dee4938 100755 --- a/configure-host.sh +++ b/configure-host.sh @@ -353,14 +353,14 @@ verify_result() { main() { print_banner + load_observability_env check_systemctl check_docker_installed check_docker_service_status show_summary configure_docker_service configure_docker_log_limit - verify_result - load_observability_env + verify_result } main "$@"