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.
26 lines
748 B
26 lines
748 B
---
|
|
|
|
- name: Ensure Conduit config path exists
|
|
ansible.builtin.file:
|
|
path: "{{ matrix_conduit_config_path }}"
|
|
state: directory
|
|
mode: 0750
|
|
owner: "{{ matrix_user_username }}"
|
|
group: "{{ matrix_user_groupname }}"
|
|
when: "matrix_conduit_enabled|bool"
|
|
|
|
- name: Ensure Conduit data path exists
|
|
ansible.builtin.file:
|
|
path: "{{ matrix_conduit_data_path }}"
|
|
state: directory
|
|
mode: 0770
|
|
owner: "{{ matrix_user_username }}"
|
|
group: "{{ matrix_user_groupname }}"
|
|
when: "matrix_conduit_enabled|bool"
|
|
|
|
- import_tasks: "{{ role_path }}/tasks/conduit/setup_install.yml"
|
|
when: matrix_conduit_enabled|bool
|
|
|
|
- import_tasks: "{{ role_path }}/tasks/conduit/setup_uninstall.yml"
|
|
when: "not matrix_conduit_enabled|bool"
|