fix quoting in ssh partial

This commit is contained in:
Megan Marsh 2019-04-17 09:55:21 -07:00
parent 8315be7e19
commit 992ab93708
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
```