On 03/08/2011 07:55 AM, Brian C. Lane wrote:
So that the modules will remain blacklisted through reboots, write out
a blacklist file for modprobe. This is copied to /etc/modprobe.d/ by
yuminstall.py after the filesystem is formatted
Related: rhbz#569883
---
+ /* Write out the blacklist, used by modprobe on bootup */
+ fd = open("/tmp/anaconda.conf", O_WRONLY | O_CREAT, 0666);
Won't this override the file if it already existed?