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

ansible-playbooks/general#72 All includes are now include_tasks and they...

ansible-playbooks/general#72 All includes are now include_tasks and they always have a tag associated
parent ba42ba21
No related branches found
No related tags found
No related merge requests found
...@@ -3,14 +3,15 @@ ...@@ -3,14 +3,15 @@
- name: "Common WkHtmlToPDF" - name: "Common WkHtmlToPDF"
set_fact: role_wkhtmltopdf_started=true set_fact: role_wkhtmltopdf_started=true
tags: always tags: 'always'
- block: - block:
- import_tasks: install.yml - include_tasks: install.yml
tags: 'always'
- name: 'Remember that this role had been run' - name: 'Remember that this role had been run'
set_fact: role_wkhtmltopdf_completed=true set_fact: role_wkhtmltopdf_completed=true
tags: always tags: 'always'
when: '"wkhtmltopdf" not in excluded_roles and role_wkhtmltopdf_completed is not defined' when: '"wkhtmltopdf" not in excluded_roles and role_wkhtmltopdf_completed is not defined'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment