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

ansible-playbooks/general#72 Always use import_tasks or include_tasks instead of just include

parent 4d57cea6
No related branches found
No related tags found
No related merge requests found
......@@ -10,5 +10,4 @@
when: youtrack.jail is defined
tags: 'always'
- include_tasks: 'apache.yml'
tags: 'always'
- import_tasks: 'apache.yml'
......@@ -9,7 +9,7 @@
- block:
- name: "Install Certs"
include: '../../letsencrypt/tasks/cert.yml'
include_tasks: '../../letsencrypt/tasks/cert.yml'
with_items: '{{ youtrack_settings|default([]) }}'
loop_control:
loop_var: domain
......@@ -20,7 +20,7 @@
- block:
- name: "Install"
include: 'install.yml'
include_tasks: 'install.yml'
with_items: '{{ youtrack_settings|default([]) }}'
loop_control:
loop_var: youtrack
......
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