configurations-ansible/roles/hardening-basic/templates/basic/etc/modprobe.d/hardening.conf
2022-11-22 11:42:08 +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 %}