From 992ab9370844c6a3aacdee800b71f80ec286b780 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Wed, 17 Apr 2019 09:55:21 -0700 Subject: [PATCH] fix quoting in ssh partial --- .../partials/builders/_virtualbox-ssh-key-pair.html.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/source/partials/builders/_virtualbox-ssh-key-pair.html.md b/website/source/partials/builders/_virtualbox-ssh-key-pair.html.md index 62372174c..4b0604806 100644 --- a/website/source/partials/builders/_virtualbox-ssh-key-pair.html.md +++ b/website/source/partials/builders/_virtualbox-ssh-key-pair.html.md @@ -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 ``` + +