Skip to content

Commit

Permalink
Merge pull request #17 from wcm-io-devops/feature/debian10_support
Browse files Browse the repository at this point in the history
Add Debian 10 support; remove Debian 8 support
  • Loading branch information
bellackn authored Mar 11, 2020
2 parents b3c0aae + 2705062 commit 2dd3fcc
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This role requires Ansible 2.4 or higher and works with Dispatcher 4.2.x or high

Available variables are listed below, along with default values (see `defaults/main.yml`):

aem_dispatcher_version: 4.3.2
aem_dispatcher_version: 4.3.3

The dispatcher version to install.

Expand Down
2 changes: 1 addition & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ galaxy_info:
- bionic
- name: Debian
versions:
- jessie
- stretch
- buster
- name: EL
versions:
- 7
Expand Down
1 change: 0 additions & 1 deletion vars/distribution_Debian-9.yml

This file was deleted.

3 changes: 1 addition & 2 deletions vars/distribution_Debian.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
aem_dispatcher_libssl_path: /usr/lib/x86_64-linux-gnu
aem_dispatcher_libssl_version: "1.0.0"
aem_dispatcher_libssl_path: /usr/lib/x86_64-linux-gnu
1 change: 0 additions & 1 deletion vars/distribution_Ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
aem_dispatcher_libssl_version: "1.0.0"
aem_dispatcher_libssl_path: /lib/x86_64-linux-gnu
5 changes: 4 additions & 1 deletion vars/family_Debian.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
aem_dispatcher_module_path: /usr/lib/apache2/modules
_aem_dispatcher_apache_server_root: "{{ aem_dispatcher_apache_server_root | default(apache_server_root) | default('/etc/apache2') }}"
_aem_dispatcher_apache_server_root: "{{ aem_dispatcher_apache_server_root | default(apache_server_root) | default('/etc/apache2') }}"

aem_dispatcher_libssl_version: >-
{{ '1.1' if ansible_distribution_major_version is version('10', '>=') else '1.0.2' }}

0 comments on commit 2dd3fcc

Please sign in to comment.