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 @@
- block:
- import_tasks: install.yml
- import_tasks: configure.yml
- name: Import install
import_tasks: install.yml
- name: Import configure
import_tasks: configure.yml
tags:
- Config
- import_tasks: blacklists.yml
- name: Import blacklist
import_tasks: blacklists.yml
tags:
- Config
- Blacklists
......@@ -39,7 +44,8 @@
- Certs
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
tags:
- 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