Add tinytinyrss to ansible
This commit is contained in:
parent
0c6ef34cf6
commit
2b8aef7f9f
14 changed files with 95 additions and 78 deletions
|
@ -1,7 +1,2 @@
|
|||
- import_tasks: steps/create-service-directory.yml
|
||||
- import_tasks: steps/template-docker-compose.yml
|
||||
- import_tasks: steps/template-service-env.yml
|
||||
when: compose.env|default(False) == True
|
||||
- include_tasks: steps/template-site-config.yml
|
||||
when: svc.domain is defined
|
||||
- import_tasks: steps/start-service.yml
|
||||
- import_tasks: prepare-common-service.yml
|
||||
- import_tasks: start-common-service.yml
|
||||
|
|
4
_ansible/tasks/prepare-common-service.yml
Normal file
4
_ansible/tasks/prepare-common-service.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- import_tasks: steps/create-service-directory.yml
|
||||
- import_tasks: steps/template-docker-compose.yml
|
||||
- import_tasks: steps/template-service-env.yml
|
||||
when: compose.env|default(False) == True
|
3
_ansible/tasks/start-common-service.yml
Normal file
3
_ansible/tasks/start-common-service.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
- include_tasks: steps/template-site-config.yml
|
||||
when: svc.domain is defined
|
||||
- import_tasks: steps/start-service.yml
|
Reference in a new issue