1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Address some language in EXAMPLES (#37555)

This commit is contained in:
JP Mens 2018-03-19 18:51:23 +01:00 committed by Brian Coca
parent 0d0bdbec62
commit 357beeb7ae

View file

@ -82,13 +82,13 @@ author: "Ansible Core Team"
'''
EXAMPLES = '''
- name: Set authorized key took from file
- name: Set authorized key taken from file
authorized_key:
user: charlie
state: present
key: "{{ lookup('file', '/home/charlie/.ssh/id_rsa.pub') }}"
- name: Set authorized key took from url
- name: Set authorized keys taken from url
authorized_key:
user: charlie
state: present
@ -125,7 +125,7 @@ EXAMPLES = '''
key: https://github.com/user.keys
validate_certs: False
- name: Set authorized key, removing all the authorized key already set
- name: Set authorized key, removing all the authorized keys already set
authorized_key:
user: root
key: '{{ item }}'