# platform = multi_platform_rhel, multi_platform_fedora
# reboot = true
# strategy = disable
# complexity = low
# disruption = medium
if grep --silent "^install %KERNMODULE%" /etc/modprobe.d/%KERNMODULE%.conf ; then
	sed -i 's/^install %KERNMODULE%.*/install %KERNMODULE% /bin/true/g' /etc/modprobe.d/%KERNMODULE%.conf
else
	echo -e "\n# Disable per security requirements" >> /etc/modprobe.d/%KERNMODULE%.conf
	echo "install %KERNMODULE% /bin/true" >> /etc/modprobe.d/%KERNMODULE%.conf
fi
