[PATCH 1/5] Remove the iscsi and noiscsi options

Martin Kolman mkolman at redhat.com
Wed Jun 11 13:56:25 UTC 2014


They are no longer needed.

Signed-off-by: Martin Kolman <mkolman at redhat.com>
---
 anaconda            | 5 -----
 pyanaconda/flags.py | 1 -
 2 files changed, 6 deletions(-)

diff --git a/anaconda b/anaconda
index 1be9eda..6e51c37 100755
--- a/anaconda
+++ b/anaconda
@@ -314,8 +314,6 @@ def parseArguments(argv=None, boot_cmdline=None):
 
     ap.add_argument("--noibft", dest="ibft", action="store_false", default=True)
     ap.add_argument("--ibft", action="store_true")
-    ap.add_argument("--noiscsi", dest="iscsi", action="store_false", default=False)
-    ap.add_argument("--iscsi", action="store_true")
 
     # Geolocation
     ap.add_argument("--geoloc")
@@ -896,9 +894,6 @@ if __name__ == "__main__":
     if opts.ibft:
         flags.ibft = 1
 
-    if opts.iscsi:
-        flags.iscsi = 1
-
     if opts.targetArch:
         flags.targetarch = opts.targetArch
 
diff --git a/pyanaconda/flags.py b/pyanaconda/flags.py
index 4613f48..68dbdb5 100644
--- a/pyanaconda/flags.py
+++ b/pyanaconda/flags.py
@@ -46,7 +46,6 @@ class Flags(object):
         self.__dict__['_in_init'] = True
         self.livecdInstall = 0
         self.ibft = 1
-        self.iscsi = 0
         self.usevnc = 0
         self.vncquestion = True
         self.mpath = 1
-- 
1.9.3



More information about the anaconda-patches mailing list