Skip to content
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

Install libssl1.1 from apt repo on jammy #614

Merged
merged 6 commits into from Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 11 additions & 1 deletion ansible/tasks/ubuntu_jammy.yml
Expand Up @@ -4,9 +4,19 @@
- libsodium23
- libtinfo5

# Remove once new AMIs are build
- name: Remove old libssl deb package
apt:
pkg:
- libssl1.1
state: absent
changed_when: false

- name: Install Ubuntu 22.04 dependency debs
apt:
deb: "http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.21_amd64.deb"
deb: "http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb"
# Remove once new AMIs are build
changed_when: false

# remove once Vault is updated to support more modern algos
- name: Enable legacy CA algos in sshd config
Expand Down
4 changes: 2 additions & 2 deletions test/terraform/test.tf
Expand Up @@ -28,7 +28,7 @@ module "test-aenode-2204" {

instance_type = "t3.large"
instance_types = ["t3.large"]
ami_name = "aeternity-ubuntu-22.04-v1705404634"
ami_name = "aeternity-ubuntu-22.04-v1708524781"

additional_storage = true
additional_storage_size = 5
Expand Down Expand Up @@ -61,7 +61,7 @@ module "test-aemdw-2204" {

instance_type = "t3.large"
instance_types = ["t3.large"]
ami_name = "aeternity-ubuntu-22.04-v1705404634"
ami_name = "aeternity-ubuntu-22.04-v1708524781"

additional_storage = true
additional_storage_size = 5
Expand Down