mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1553 from dagwieers/doc-authorized_key-fix
Fix example where imported ssh keys contain spaces
This commit is contained in:
commit
ab0f972715
1 changed files with 1 additions and 1 deletions
|
@ -402,7 +402,7 @@ This syntax will remain in future versions, though we will also will provide way
|
||||||
is an example using the authorized_key module, which requires the actual text of the SSH key as a parameter::
|
is an example using the authorized_key module, which requires the actual text of the SSH key as a parameter::
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- authorized_key name=$item key=$FILE('/keys/$user1')
|
- authorized_key name=$item key="$FILE('/keys/$user1')"
|
||||||
with_items:
|
with_items:
|
||||||
- pinky
|
- pinky
|
||||||
- brain
|
- brain
|
||||||
|
|
Loading…
Reference in a new issue