Skip to content

Instantly share code, notes, and snippets.

@bcoca
Created June 9, 2016 13:51
Show Gist options
  • Save bcoca/088858e10e83cea683abccf8bd696d87 to your computer and use it in GitHub Desktop.
Save bcoca/088858e10e83cea683abccf8bd696d87 to your computer and use it in GitHub Desktop.
# play
- hosts: localhost
gather_facts: false
vars:
me: 0
tasks:
- include: test.yml
# test.yml
- set_fact:
me: "{{ (me|int) + 1 }}"
- debug: var=me
- include: test.yml
when: me|int < 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment