1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-08 11:39:02 +00:00

Merge pull request #1775 from dagwieers/boolean-yes-no

Make use of yes/no booleans in playbooks
This commit is contained in:
Michael DeHaan 2012-12-15 11:53:48 -08:00
commit dede11750c
12 changed files with 30 additions and 28 deletions

View file

@ -1,7 +1,7 @@
---
- hosts: all
connection: local
gather_facts: False
gather_facts: no
tasks:
- action: debug msg="$variable"
@ -9,6 +9,6 @@
connection: local
vars:
- ugly: var
gather_facts: False
gather_facts: no
tasks:
- action: debug msg="$variable"