-
Notifications
You must be signed in to change notification settings - Fork 50
Add checksum for openssl1.1.1t #404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The previous commit to add support for openssl1.1.1t missed the step of adding the checksum to the config. This PR adds the checksum for the openssl1.1.1t tar file. The sha256 was acquired by the following steps: ```bash curl -LO https://www.openssl.org/source/openssl-1.1.1t.tar.gz sha256sum openssl-1.1.1t.tar.gz ```
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The sha256 was acquired by the following steps:
curl -LO https://www.openssl.org/source/openssl-1.1.1t.tar.gz sha256sum openssl-1.1.1t.tar.gz
Also here: https://github.com/chef/omnibus-software/blob/main/config/software/openssl.rb#L55 😁
config/software/openssl.rb
Outdated
version("1.1.1q") { source sha256: "d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51bf8c8fd10ca" } | ||
version("1.1.1l") { source sha256: "0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1" } | ||
version("1.1.1t") { source sha256: "8dee9b24bdb1dcbf0c3d1e9b02fb8f6bf22165e807f45adeb7c9677536859d3b" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version("1.1.1q") { source sha256: "d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51bf8c8fd10ca" } | |
version("1.1.1l") { source sha256: "0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1" } | |
version("1.1.1t") { source sha256: "8dee9b24bdb1dcbf0c3d1e9b02fb8f6bf22165e807f45adeb7c9677536859d3b" } | |
version("1.1.1t") { source sha256: "8dee9b24bdb1dcbf0c3d1e9b02fb8f6bf22165e807f45adeb7c9677536859d3b" } | |
version("1.1.1q") { source sha256: "d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51bf8c8fd10ca" } | |
version("1.1.1l") { source sha256: "0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1" } |
Let's keep them sorted (reverse chronological).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The alphabet sure is tricky sometimes
Oof, didn't notice that. Oh well, didn't take too long 😅 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
The previous commit to add support for openssl1.1.1t (#402) missed the step of adding the checksum to the config. This PR adds the checksum for the openssl1.1.1t tar file.
The sha256 was acquired by the following steps: