summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--instdata.py3
-rw-r--r--yuminstall.py4
2 files changed, 4 insertions, 3 deletions
diff --git a/instdata.py b/instdata.py
index c0aaf924d..990b125b3 100644
--- a/instdata.py
+++ b/instdata.py
@@ -294,7 +294,8 @@ class InstallData:
self.security.writeKS(f)
self.timezone.writeKS(f)
self.bootloader.writeKS(f)
- self.storage.writeKS(f) # FIXME: unimplemented
+ self.storage.iscsi.writeKS(f)
+ self.storage.zfcp.writeKS(f)
if self.backend is not None:
self.backend.writeKS(f)
diff --git a/yuminstall.py b/yuminstall.py
index eb69e2bfc..f30d7aa67 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -1497,8 +1497,8 @@ reposdir=/etc/anaconda.repos.d,/tmp/updates/anaconda.repos.d,/tmp/product/anacon
shutil.copyfile("/etc/modprobe.d/anaconda",
anaconda.rootPath + "/etc/modprobe.d/anaconda")
anaconda.id.network.write(instPath=anaconda.rootPath, anaconda=anaconda)
- anaconda.id.iscsi.write(anaconda.rootPath, anaconda)
- anaconda.id.zfcp.write(anaconda.rootPath)
+ anaconda.id.storage.iscsi.write(anaconda.rootPath, anaconda)
+ anaconda.id.storage.zfcp.write(anaconda.rootPath)
if not anaconda.id.isHeadless:
anaconda.id.keyboard.write(anaconda.rootPath)