Skip to content
Snippets Groups Projects
Commit c8ef9cb9 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-playbooks/general#85 Name import and include tasks

parent 5a050c4c
No related branches found
No related tags found
No related merge requests found
...@@ -9,11 +9,16 @@ ...@@ -9,11 +9,16 @@
- block: - block:
- import_tasks: install.yml - name: Import install
- import_tasks: configure.yml import_tasks: install.yml
- name: Import configure
import_tasks: configure.yml
tags: tags:
- Config - Config
- import_tasks: blacklists.yml
- name: Import blacklist
import_tasks: blacklists.yml
tags: tags:
- Config - Config
- Blacklists - Blacklists
...@@ -39,7 +44,8 @@ ...@@ -39,7 +44,8 @@
- Certs - Certs
when: proxy_active|default(true) and (not excluded_roles or "letsencrypt" not in excluded_roles) when: proxy_active|default(true) and (not excluded_roles or "letsencrypt" not in excluded_roles)
- import_tasks: proxypool.yml - name: Import proxypool
import_tasks: proxypool.yml
when: not excluded_roles or "letsencrypt" not in excluded_roles when: not excluded_roles or "letsencrypt" not in excluded_roles
tags: tags:
- Certs - Certs
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment