From bb1c3a110e739983481184c43aeac91ae2e4e303 Mon Sep 17 00:00:00 2001 From: azhinu Date: Thu, 16 Jan 2025 23:37:05 +0300 Subject: [PATCH] Allowed custom minio client command name --- tasks/configure_server.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/configure_server.yml b/tasks/configure_server.yml index 5e3c1b2..20f9c8a 100644 --- a/tasks/configure_server.yml +++ b/tasks/configure_server.yml @@ -1,12 +1,12 @@ --- - name: Set insecure mc command set_fact: - mc_command: "mc --insecure" + mc_command: "{{ minio_client_bin }} --insecure" when: not minio_validate_certificate - name: Set secure mc command set_fact: - mc_command: "mc" + mc_command: "{{ minio_client_bin }}" when: minio_validate_certificate - name: Configure minio connection alias