Merge pull request #7520 from hashicorp/fix_7519

fix quoting in ssh partial
This commit is contained in:
Megan Marsh 2019-04-17 10:22:27 -07:00 committed by GitHub
commit 5ef8595bf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -15,6 +15,7 @@ be accessed using the template variables.
For example, the public key can be provided in the boot command as a URL
encoded string by appending `| urlquery` to the variable:
```json
{
"type": "virtualbox-iso",
@ -26,7 +27,8 @@ encoded string by appending `| urlquery` to the variable:
A kickstart could then leverage those fields from the kernel command line by
decoding the URL-encoded public key:
```
``` sh
%post
# Newly created users need the file/folder framework for SSH key authentication.
@ -59,3 +61,5 @@ fi
%end
```