[PATCH blivet rhel7-branch] iscsi: in installer automatically log into firmware iscsi targets (#1034291)

Radek Vykydal rvykydal at redhat.com
Wed Jan 8 13:28:40 UTC 2014


Not all iSCSI offload solutions use iBFT or need network interfaces configured
by the OS to function.

I wanted to propagate anaconda ibft flag in update_from_anaconda_flags
but it happens too late (storageInitialize) so I hope we can se the flag
right in blivet.

---
 blivet/flags.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/blivet/flags.py b/blivet/flags.py
index b10f725..ebf504b 100644
--- a/blivet/flags.py
+++ b/blivet/flags.py
@@ -43,7 +43,7 @@ class Flags(object):
         self.selinux = selinux.is_selinux_enabled()
         self.multipath = True
         self.dmraid = True
-        self.ibft = False
+        self.ibft = True
         self.noiswmd = False
 
         self.gfs2 = True
@@ -79,9 +79,6 @@ class Flags(object):
         if "nodmraid" in self.boot_cmdline:
             self.dmraid = False
 
-        if self.boot_cmdline.get("ip") == "ibft":
-            self.ibft = True
-
         if "noiswmd" in self.boot_cmdline:
             self.noiswmd = True
 
-- 
1.7.11.7



More information about the anaconda-patches mailing list