Skip to content

Commit

Permalink
Merge pull request #26 from azhinu/master
Browse files Browse the repository at this point in the history
Allow use custom minio client binary name
  • Loading branch information
ricsanfre authored Jan 19, 2025
2 parents c071819 + bb1c3a1 commit 996185d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/configure_server.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 996185d

Please sign in to comment.