Skip to content
Snippets Groups Projects
Commit 2bc399da 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 f60d4e19
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
- name: "Oracle Role"
set_fact: role_oracle_started=true
tags: always
tags: 'always'
- block:
......@@ -22,9 +22,11 @@
register: last_result
ignore_errors: yes
- import_tasks: prepare.yml
- include_tasks: prepare.yml
when: "last_result is defined and last_result.stdout != oracle_version"
tags: 'always'
- import_tasks: configure.yml
- include_tasks: configure.yml
tags: 'always'
when: '"oracle" not in excluded_roles'
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