1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
fedihub-ansible/roles/matrix/tasks/common.yml

22 lines
475 B
YAML

---
- name: Create Matrix directories
file:
state: directory
path: '{{ item }}'
mode: 'u=rwx,g=rwx,o=rx'
owner: root
group: root
with_items:
- '{{ matrix__conf_dir }}'
- '{{ matrix__opt_dir }}'
- '{{ matrix__lib_dir }}'
- '{{ matrix__run_dir }}'
- name: Recreate Matrix rundirs
template:
src: '../templates/tmpfiles.d/matrix.conf'
dest: '/etc/tmpfiles.d/matrix.conf'
mode: 'u=rw,g=r,o=r'
owner: root
group: root