Skip to content

Commit c3e2304

Browse files
committed
Merge branch 'fix/missing_closing_ifmodule'
2 parents 4e67545 + 4d03f1c commit c3e2304

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGES.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,6 @@ Fixed
7474

7575
- Fix role run with ``apache__deploy_state == "absent"`` after the role has
7676
been run with ``present`` before. [ypid_]
77+
78+
- Fix missing closing ``</IfModule>`` directive in case an old OpenSSL version
79+
is used. [ypid_]

templates/etc/apache2/conf-available/local-debops_apache.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ SSLStaplingResponseMaxAge {{ apache__ocsp_stapling_response_max_age|string }}
4040
{% if apache__ocsp_stapling_force_url %}
4141
SSLStaplingForceURL {{ apache__ocsp_stapling_force_url | quote }}
4242
{% endif %}
43-
</IfModule>
4443
{% endif %}
44+
</IfModule>

templates/etc/apache2/sites-available/debops__tpl_macros.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
{{ ansible_local.pki.openssl_version
8888
if (ansible_local|d() and ansible_local.pki|d() and
8989
ansible_local.pki.openssl_version|d())
90-
else "0.0.0" }}
90+
else "1.0.2" }}
9191
{% endmacro %}{# ]]] #}
9292

9393
{% macro get_gnutls_version() %}{# [[[ #}

0 commit comments

Comments
 (0)