Bug 434965 - iscsiname needs to come before any iscsi commands
Summary: iscsiname needs to come before any iscsi commands
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: pykickstart
Version: rawhide
Hardware: All
OS: Linux
low
low
Target Milestone: ---
Assignee: Chris Lumens
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2008-02-26 15:39 UTC by James Laska
Modified: 2013-09-02 06:24 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2008-02-26 16:29:58 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description James Laska 2008-02-26 15:39:53 UTC
diff --git a/pykickstart/commands/iscsi.py b/pykickstart/commands/iscsi.py
index f967056..bf15cee 100644
--- a/pykickstart/commands/iscsi.py
+++ b/pykickstart/commands/iscsi.py
@@ -53,7 +53,7 @@ class FC6_IscsiData(BaseData):
         return retval + "\n"
 
 class FC6_Iscsi(KickstartCommand):
-    def __init__(self, writePriority=70, iscsi=None):
+    def __init__(self, writePriority=71, iscsi=None):
         KickstartCommand.__init__(self, writePriority)
 
         if iscsi == None:
diff --git a/pykickstart/commands/iscsiname.py b/pykickstart/commands/iscsiname.py
index 00a14af..a6ce2df 100644
--- a/pykickstart/commands/iscsiname.py
+++ b/pykickstart/commands/iscsiname.py
@@ -28,7 +28,7 @@ import rhpl.translate as translate
 translate.textdomain("pykickstart")
 
 class FC6_IscsiName(KickstartCommand):
-    def __init__(self, writePriority=71, iscsiname=""):
+    def __init__(self, writePriority=70, iscsiname=""):
         KickstartCommand.__init__(self, writePriority)
         self.iscsiname = iscsiname


Note You need to log in before you can comment on or make changes to this bug.