Use the parameter 'name' everywhere for consistency

Fix https://github.com/ansible/ansible/issues/11395
This commit is contained in:
Michael Scherer 2015-07-25 14:11:03 +02:00
parent dfdd2bb5ed
commit 162f257412

View file

@ -58,7 +58,7 @@ EXAMPLES = '''
# Example using with_file to set the system known_hosts file
- name: tell the host about our servers it might want to ssh to
known_hosts: path='/etc/ssh/ssh_known_hosts'
host='foo.com.invalid'
name='foo.com.invalid'
key="{{ lookup('file', 'pubkeys/foo.com.invalid') }}"
'''