configurations-ansible/roles/hardening-basic/templates/etc/modprobe.d/hardening.conf
2022-11-21 12:56:57 +01:00

7 lines
197 B
Text

{% for section in hardening_modprobe_disable_list %}
# Disable for {{ section }}
{% for item in hardening_modprobe_disable_list[section] %}
install {{ item }} /bin/false
{% endfor %}
{% endfor %}