main.yml 351 B

12345678910111213141516
  1. ---
  2. - name: Dependencies installed
  3. community.general.pkgng:
  4. name: minio
  5. state: latest
  6. - name: Minio enabled
  7. shell: sysrc minio_enable="YES"
  8. notify: Minio restarted
  9. - name: Minio console address configured
  10. shell: sysrc minio_console_address=":9001"
  11. notify: Minio restarted
  12. - name: Minio started
  13. service: name=minio state=started