Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename client/server install flags. #5

Merged
merged 1 commit into from
Jun 25, 2018
Merged
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_install_server: false
minio_install_client: false

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

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

# Switches to disable minio server and/or minio client installation
skip_server: false
skip_client: false
# Switches to enable/disable the minio server and/or minio client installation.
minio_install_server: true
minio_install_client: true
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: minio_install_server

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