-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix parse authorized keys script to work with OpenSSL 3.0.2 (#39)
* Fix parse authorized keys script to work with OpenSSL 3.0.2 * update changelog Co-authored-by: Jacob Meisler <[email protected]>
- Loading branch information
Showing
5 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.1-15 | ||
1.1-17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
ec2-instance-connect (1.1.17) xenial; urgency=high | ||
|
||
* Ubuntu 22.04 upgrades OpenSSL to 3.0.2, which breaks strict x509 verification for one of our intermediate CA certificates. | ||
* Only verify CA certificates that aren't already trusted in /etc/ssl/certs. | ||
* OpenSSL 3.0.2 also changes the formatting of the SHA1 fingerprint of an x509 certificate. Switch to a case insensitive match to be backwards and forwards compatible between OpenSSL versions. | ||
|
||
-- Jacob Meisler <[email protected]> Mon, May 9 2022 12:30:00 -0400 | ||
|
||
ec2-instance-connect (1.1.15) xenial; urgency=high | ||
|
||
* Change EIC Hostkeys Harvesting to be asynchronous from SSHD to improve instance boot time | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,6 +157,10 @@ fi | |
|
||
|
||
%changelog | ||
* Mon May 9 2022 Jacob Meisler <[email protected]> 1.1-17 | ||
- OpenSSL 3.0.2 breaks strict x509 verification for one of our intermediate CA certificates. | ||
- Only verify CA certificates that aren't already trusted in /etc/ssl/certs. | ||
- OpenSSL 3.0.2 also changes the formatting of the SHA1 fingerprint of an x509 certificate. Switch to a case insensitive match to be backwards and forwards compatible between OpenSSL versions. | ||
* Thu Sep 9 2021 Vishrutha Konappa Reddy <[email protected]> 1.1-15 | ||
- Change EIC Hostkeys Harvesting to be asynchronous from SSHD to improve instance boot time | ||
- Rename and enable ec2-instance-connect-harvest-hostkeys.service. Remove pointer to old ec2-instance-connect.service. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters