You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Affected Puppet, Ruby, OS and module versions/distributions
Module version: 4.0..1
The blacklist call only writes an file /etc/modprobe.d/blacklist.conf, which contains the line "blacklist " but this will be not enough.
See: https://access.redhat.com/solutions/41278
To full black list an module two lines will be needed:
blacklist <modname>
install <modname> /bin/false
An fix can be, calling in the kmod::blacklist function also: kmod::install { $name : command => '/bin/false' }
The text was updated successfully, but these errors were encountered:
Affected Puppet, Ruby, OS and module versions/distributions
The blacklist call only writes an file /etc/modprobe.d/blacklist.conf, which contains the line "blacklist " but this will be not enough.
See:
https://access.redhat.com/solutions/41278
To full black list an module two lines will be needed:
An fix can be, calling in the kmod::blacklist function also:
kmod::install { $name : command => '/bin/false' }
The text was updated successfully, but these errors were encountered: