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

22 lines
530 B
YAML

---
- name: Configure Tiny Tiny RSS
template:
src: config.php
dest: "{{ installation_directory }}/config.php"
owner: "{{ system_user }}"
group: "{{ global_nginx_system_user }}"
mode: "u=rw,g=r,o="
notify: "restart {{ domain }}"
- name: Configure Tiny Tiny RSS systemd service
template:
src: tt-rss.service
dest: "{{ global_systemd_configuration_directory }}/{{ service_name }}"
owner: root
group: root
mode: "u=rw,g=r,o="
notify:
- reload systemd
- "restart {{ domain }}"