mirror of
https://github.com/atosatto/ansible-minio.git
synced 2025-01-20 20:41:20 +01:00
Rename client/server install flags.
* Use minio namespace. * Use positive bool flag to avoid confusing double negative.
This commit is contained in:
parent
0de61d0ab1
commit
e86f6f8f8a
@ -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.
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user