Rename client/server install flags.

* Use minio namespace.
* Use positive bool flag to avoid confusing double negative.
This commit is contained in:
Ben Kochie 2018-06-25 09:02:36 +02:00
parent 0de61d0ab1
commit e86f6f8f8a
3 changed files with 7 additions and 7 deletions

View File

@ -49,8 +49,8 @@ Additional CLI options that must be appended to the minio server start command.
Minio access and secret keys. Minio access and secret keys.
skip_server: False minio_install_server: false
skip_client: False minio_install_client: false
Switches to disable minio server and/or minio client installation. Switches to disable minio server and/or minio client installation.

View File

@ -25,6 +25,6 @@ minio_server_opts: ""
minio_access_key: "" minio_access_key: ""
minio_secret_key: "" minio_secret_key: ""
# Switches to disable minio server and/or minio client installation # Switches to enable/disable the minio server and/or minio client installation.
skip_server: false minio_install_server: true
skip_client: false minio_install_client: true

View File

@ -28,7 +28,7 @@
shell: /bin/bash shell: /bin/bash
- include: server.yml - include: server.yml
when: not skip_server when: minio_install_server
- include: client.yml - include: client.yml
when: not skip_client when: minio_install_client