Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
560 B

  1. ---
  2. - name: Ensure Conduit config path exists
  3. file:
  4. path: "{{ matrix_conduit_config_path }}"
  5. state: directory
  6. mode: 0750
  7. owner: "{{ matrix_user_username }}"
  8. group: "{{ matrix_user_groupname }}"
  9. when: "matrix_conduit_enabled|bool"
  10. - name: Ensure Conduit data path exists
  11. file:
  12. path: "{{ matrix_conduit_data_path }}"
  13. state: directory
  14. mode: 0770
  15. owner: "{{ matrix_user_username }}"
  16. group: "{{ matrix_user_groupname }}"
  17. when: "matrix_conduit_enabled|bool"
  18. - import_tasks: "{{ role_path }}/tasks/conduit/setup.yml"