diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | zfcp.py | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2006-10-25 Jeremy Katz <katzj@redhat.com> + + * zfcp.py (ZFCP.write): Include zfcp in modprobe.conf so that zfcp + luns come up post-install (#210094) + 2006-10-24 Bill Nottingham <notting@redhat.com> * iw/netconfig_dialog.py: Use the same widget names as the glade @@ -227,5 +227,9 @@ class ZFCP: for d in self.fcpdevs: f.write("%s\n" %(d,)) f.close() + + f = open(instPath + "/etc/modprobe.conf", "a") + f.write("alias scsi_hostadapter zfcp\n") + f.close() # vim:tw=78:ts=4:et:sw=4 |