8ad68162f3
This patch allows deployers to opt in for a minimum password length restriction. Documentation is included. Implements: blueprint security-rhel7-stig Change-Id: Ia1d5d6677233ae21ce585b4a363d130e1bb003fa
9 lines
265 B
Django/Jinja
9 lines
265 B
Django/Jinja
{% if security_pwquality_apply_rules | bool %}
|
|
{% for rule in password_quality_rhel7 %}
|
|
{% if rule.value is defined and rule.enabled | bool %}
|
|
# {{ rule.stig_id }} - {{ rule.description }}
|
|
{{ rule.parameter}} = {{ rule.value }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|