matrix-docker-ansible-deploy/roles/custom/matrix-base/tasks/setup_matrix_base.yml

23 lines
656 B
YAML
Raw Normal View History

2017-07-31 20:07:30 +00:00
---
- name: Ensure Matrix base path exists
ansible.builtin.file:
path: "{{ item }}"
state: directory
mode: "{{ matrix_base_data_path_mode }}"
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
with_items:
2017-10-24 04:01:11 +00:00
- "{{ matrix_base_data_path }}"
- name: Ensure Matrix network is created in Docker
community.docker.docker_network:
name: "{{ matrix_docker_network }}"
driver: bridge
2018-11-28 10:02:51 +00:00
- name: Ensure matrix-remove-all script created
ansible.builtin.template:
2018-11-28 10:02:51 +00:00
src: "{{ role_path }}/templates/usr-local-bin/matrix-remove-all.j2"
dest: "{{ matrix_local_bin_path }}/matrix-remove-all"
2018-11-28 10:02:51 +00:00
mode: 0750