Merge pull request #5 from SuperQ/bool_flags

Rename client/server install flags.
This commit is contained in:
Ben Kochie 2018-06-25 09:10:27 +02:00 committed by GitHub
commit 30dcb8bf99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.
skip_server: False
skip_client: False
minio_install_server: false
minio_install_client: false
Switches to disable minio server and/or minio client installation.

View File

@ -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

View File

@ -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