Skip to content

Commit

Permalink
Add support for Ubuntu 22
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-richter committed Feb 15, 2024
1 parent 0fb86eb commit 2bd0c36
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tasks/setup_Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@

- block:

- name: Install libssl dependency.
- name: Install libssl dependency via package manager.
package:
name: "libssl{{ aem_dispatcher_libssl_version }}"
state: present
when: aem_dispatcher_libssl_deb_package is not defined

- name: Install libssl dependency via deb package.
ansible.builtin.apt:
deb: "{{ aem_dispatcher_libssl_deb_package }}"
state: present
when: aem_dispatcher_libssl_deb_package is defined

- name: Create compatibility links.
file:
Expand Down
3 changes: 3 additions & 0 deletions vars/distribution_Ubuntu-22.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
aem_dispatcher_libssl_path: /lib/x86_64-linux-gnu
aem_dispatcher_libssl_deb_package: http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb

0 comments on commit 2bd0c36

Please sign in to comment.