summaryrefslogtreecommitdiffstats
path: root/storage/__init__.py
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2009-07-31 16:32:37 +0200
committerHans de Goede <hdegoede@redhat.com>2009-08-04 10:56:32 +0200
commit18dce332e9b77fd13b0d7e0b7c3e5e398753a423 (patch)
tree11e22d93dc46aa50998d1ed1d65284ea07c1be46 /storage/__init__.py
parent1a42b9203412cab698fe8cc665918592b7121579 (diff)
downloadanaconda-18dce332e9b77fd13b0d7e0b7c3e5e398753a423.tar.gz
anaconda-18dce332e9b77fd13b0d7e0b7c3e5e398753a423.tar.xz
anaconda-18dce332e9b77fd13b0d7e0b7c3e5e398753a423.zip
Store iscsi node pointer in iScsiDiskDevice objects
This is a preparation patch for adding support for writing the necessary dracut cmndline options to grub.conf
Diffstat (limited to 'storage/__init__.py')
-rw-r--r--storage/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/storage/__init__.py b/storage/__init__.py
index 348a15516..094c079d6 100644
--- a/storage/__init__.py
+++ b/storage/__init__.py
@@ -222,7 +222,8 @@ class Storage(object):
protected=self.protectedDevSpecs,
zeroMbr=self.zeroMbr,
passphrase=self.encryptionPassphrase,
- luksDict=self.__luksDevs)
+ luksDict=self.__luksDevs,
+ iscsi=self.iscsi)
self.fsset = FSSet(self.devicetree)
def doIt(self):
@@ -287,7 +288,8 @@ class Storage(object):
protected=self.protectedDevSpecs,
zeroMbr=self.zeroMbr,
passphrase=self.encryptionPassphrase,
- luksDict=self.__luksDevs)
+ luksDict=self.__luksDevs,
+ iscsi=self.iscsi)
self.devicetree.populate()
self.fsset = FSSet(self.devicetree)
self.anaconda.id.rootParts = None