Merge pull request #1299 from nathanielks/patch-1

Update set_fact.py
reviewable/pr18780/r1
Brian Coca 10 years ago
commit 00ee4f8da9

@ -40,12 +40,13 @@ version_added: "1.2"
EXAMPLES = ''' EXAMPLES = '''
# Example setting host facts using key=value pairs # Example setting host facts using key=value pairs
- set_fact: one_fact="something" other_fact="{{ local_var * 2 }}" - set_fact: one_fact="something" other_fact="{{ local_var }}"
# Example setting host facts using complex arguments # Example setting host facts using complex arguments
- set_fact: - set_fact:
one_fact: something one_fact: something
other_fact: "{{ local_var * 2 }}" other_fact: "{{ local_var * 2 }}"
another_fact: "{{ some_registered_var.results | map(attribute='ansible_facts.some_fact') | list }}"
# As of 1.8, Ansible will convert boolean strings ('true', 'false', 'yes', 'no') # As of 1.8, Ansible will convert boolean strings ('true', 'false', 'yes', 'no')
# to proper boolean values when using the key=value syntax, however it is still # to proper boolean values when using the key=value syntax, however it is still

Loading…
Cancel
Save