Skip to content

Instantly share code, notes, and snippets.

@pmarques
Created November 10, 2016 12:06
Show Gist options
  • Save pmarques/a98f577908b3ecb57b7bc82d364a3210 to your computer and use it in GitHub Desktop.
Save pmarques/a98f577908b3ecb57b7bc82d364a3210 to your computer and use it in GitHub Desktop.
---
- name: "Always tag shoudld not run if condition fails"
hosts: localhost
gather_facts: no
tasks:
- debug: msg="This should run"
tags:
- always
- debug: msg="This should not run {{ undefined_var }}"
tags:
- always
when: no
- debug: msg="This should not run {{ item }}"
with_items:
- "{{ undefined_var }}"
tags:
- always
when: no
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment