Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Additional CLI options that must be appended to the minio server start command.

Minio access and secret keys.

skip_server: False
skip_client: False
minio_skip_server: False
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we change this to positive wording to avoid the confusing double negative?

minio_install_server: true
minio_install_client: true

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree that this would be better

minio_skip_client: False

Switches to disable minio server and/or minio client installation.

Expand Down
4 changes: 2 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ minio_access_key: ""
minio_secret_key: ""

# Switches to disable minio server and/or minio client installation
skip_server: False
skip_client: False
minio_skip_server: False
minio_skip_client: False
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
shell: /bin/bash

- include: server.yml
when: not skip_server
when: not minio_skip_server

- include: client.yml
when: not skip_client
when: not minio_skip_client