configurations-ansible/roles/hardening-basic/templates/etc/modprobe.d/hardening.conf

8 lines
197 B
Text
Raw Normal View History

2022-11-21 12:56:57 +01:00
{% for section in hardening_modprobe_disable_list %}
# Disable for {{ section }}
{% for item in hardening_modprobe_disable_list[section] %}
install {{ item }} /bin/false
{% endfor %}
{% endfor %}