Add become: yes to playbook example

I noticed that the example doesn't include a hint that you need to be root. It's sort of obvious since the role attempts to create a minio user and group, but I figured I add it to make it easier for the next person.
This commit is contained in:
Till! 2018-12-06 12:45:08 +01:00 committed by GitHub
parent 77cea97a1e
commit a6cb5c9b09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ None.
- name: "Install Minio"
hosts: all
roles:
- atosatto.minio
- { role: atosatto.minio, become: yes }
vars:
minio_server_datadirs: [ "/minio-test" ]
```