mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-10 05:33:29 +01:00
67d2339f03
https://github.com/willshersystems/ansible-sshd/issues/188 This shouldn't be necessary, but there seems no way to guarantee using a version of Jinja which doesn't have this problem. In addition - it is not good practice to compare values to `true` or `false` - instead, just ensure the value is a `bool` type and evaluate in a boolean context.
10 lines
296 B
Django/Jinja
10 lines
296 B
Django/Jinja
{{ ansible_managed | comment }}
|
|
{% if __sshd_sysconfig_supports_crypto_policy %}
|
|
{% if sshd_sysconfig_override_crypto_policy | bool %}
|
|
CRYPTO_POLICY=
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if __sshd_sysconfig_supports_use_strong_rng %}
|
|
SSH_USE_STRONG_RNG={{ sshd_sysconfig_use_strong_rng }}
|
|
{% endif %}
|