Add tinytinyrss to ansible
This commit is contained in:
parent
0c6ef34cf6
commit
2b8aef7f9f
14 changed files with 95 additions and 78 deletions
_ansible/roles/tinytinyrss/tasks
16
_ansible/roles/tinytinyrss/tasks/main.yml
Normal file
16
_ansible/roles/tinytinyrss/tasks/main.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
- name: Deploy {{ svc.name }}
|
||||
tags:
|
||||
- tinytinyrss
|
||||
- tt-rss
|
||||
- news
|
||||
block:
|
||||
- import_tasks: prepare-common-service.yml
|
||||
|
||||
- name: Copy the nginx-config
|
||||
ansible.builtin.copy:
|
||||
src: nginx.conf
|
||||
dest: "{{ (service_path, 'nginx.conf') | path_join }}"
|
||||
mode: '0644'
|
||||
|
||||
- import_tasks: start-common-service.yml
|
Reference in a new issue