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:
parent
0d0bdbec62
commit
357beeb7ae
1 changed files with 3 additions and 3 deletions
|
@ -82,13 +82,13 @@ author: "Ansible Core Team"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- name: Set authorized key took from file
|
- name: Set authorized key taken from file
|
||||||
authorized_key:
|
authorized_key:
|
||||||
user: charlie
|
user: charlie
|
||||||
state: present
|
state: present
|
||||||
key: "{{ lookup('file', '/home/charlie/.ssh/id_rsa.pub') }}"
|
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:
|
authorized_key:
|
||||||
user: charlie
|
user: charlie
|
||||||
state: present
|
state: present
|
||||||
|
@ -125,7 +125,7 @@ EXAMPLES = '''
|
||||||
key: https://github.com/user.keys
|
key: https://github.com/user.keys
|
||||||
validate_certs: False
|
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:
|
authorized_key:
|
||||||
user: root
|
user: root
|
||||||
key: '{{ item }}'
|
key: '{{ item }}'
|
||||||
|
|
Loading…
Reference in a new issue