mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
Include newline on end of comment within private key
This commit is contained in:
parent
00c1f9c7eb
commit
c8fc8b3ad2
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ module Vagrant
|
|||
# Header of private key file content
|
||||
PRIVATE_KEY_START = "-----BEGIN OPENSSH PRIVATE KEY-----\n".freeze
|
||||
# Footer of private key file content
|
||||
PRIVATE_KEY_END = "-----END OPENSSH PRIVATE KEY-----".freeze
|
||||
PRIVATE_KEY_END = "-----END OPENSSH PRIVATE KEY-----\n".freeze
|
||||
|
||||
# Encodes given string
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue