16 lines
357 B
YAML
16 lines
357 B
YAML
---
|
|
- 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
|