summaryrefslogtreecommitdiffstats
path: root/instdata.py
diff options
context:
space:
mode:
authorKarsten Hopp <karsten@redhat.de>2004-08-02 13:03:24 +0000
committerKarsten Hopp <karsten@redhat.de>2004-08-02 13:03:24 +0000
commit53485645b51e0fb515ca8fabeb51b387d86c9639 (patch)
tree866b4d1dc82b05cc2e3bce53123c4a28ccc75c2e /instdata.py
parente5ebd6466f500f049514e5b2a4b856a48ce93c45 (diff)
downloadanaconda-53485645b51e0fb515ca8fabeb51b387d86c9639.tar.gz
anaconda-53485645b51e0fb515ca8fabeb51b387d86c9639.tar.xz
anaconda-53485645b51e0fb515ca8fabeb51b387d86c9639.zip
initialize and write out zfcp config
Diffstat (limited to 'instdata.py')
-rw-r--r--instdata.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/instdata.py b/instdata.py
index 7b87548f9..c7fdaeda1 100644
--- a/instdata.py
+++ b/instdata.py
@@ -27,6 +27,7 @@ import bootloader
import partitions
import partedUtils
import hdrlist
+import zfcp
from flags import *
from constants import *
@@ -57,6 +58,7 @@ class InstallData:
self.langSupport = language.Language()
self.instClass = None
self.network = network.Network()
+ self.zfcp = zfcp.ZFCP()
self.firewall = firewall.Firewall()
self.security = security.Security()
self.timezone = timezone.Timezone()
@@ -119,6 +121,7 @@ class InstallData:
self.timezone.write (instPath)
self.auth.write (instPath)
self.firewall.write (instPath)
+ self.zfcp.write (instPath)
self.security.write (instPath)
self.rootPassword.write (instPath, self.auth)
self.accounts.write (instPath, self.auth)
@@ -172,6 +175,7 @@ class InstallData:
self.keyboard.writeKS(f)
self.xsetup.writeKS(f, self.desktop)
self.network.writeKS(f)
+ self.zfcp.writeKS(f)
self.rootPassword.writeKS(f, self.auth)
self.firewall.writeKS(f)
self.security.writeKS(f)