2020-04-28 13:23:10 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: {{ cookiecutter.app_name | upper }} | Install
|
2022-03-23 18:01:02 +01:00
|
|
|
import_tasks: install.yml
|
2020-04-28 13:23:10 +02:00
|
|
|
tags:
|
|
|
|
- {{ cookiecutter.app_name }}_install
|
|
|
|
|
|
|
|
- name: {{ cookiecutter.app_name | upper }} | Configure
|
2022-03-23 18:01:02 +01:00
|
|
|
import_tasks: config.yml
|
2020-04-28 13:23:10 +02:00
|
|
|
tags:
|
|
|
|
- {{ cookiecutter.app_name }}_configure
|
|
|
|
{% if cookiecutter.has_service == 'True' %}
|
|
|
|
- name: {{ cookiecutter.app_name | upper }} | Service
|
2022-03-23 18:01:02 +01:00
|
|
|
import_tasks: service.yml
|
2020-04-28 13:23:10 +02:00
|
|
|
tags:
|
|
|
|
- {{ cookiecutter.app_name }}_service
|
|
|
|
{% endif %}
|