[PATCH 2/6] Set a reference to the kickstart handler on BaseData objects.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



---
 kickstart.py |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/kickstart.py b/kickstart.py
index aca5319..037e469 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -40,6 +40,7 @@ import upgrade
 import pykickstart.commands as commands
 from storage.devices import *
 from scdate.core import zonetab
+from pykickstart.base import BaseData
 from pykickstart.constants import *
 from pykickstart.errors import *
 from pykickstart.parser import *
@@ -1119,6 +1120,18 @@ class AnacondaKSHandler(superclass):
         self.id = self.anaconda.id
         self.onPart = {}
 
+    def dispatcher(self, args, lineno, include=None):
+        # This is a big fat hack, and I don't want it in pykickstart.  A lot
+        # of our overridden data objects here refer to the handler (to skip
+        # steps, mainly).  I don't think this should be pykickstart's job
+        # since it's only required for anaconda, so it's got to go here.
+        obj = superclass.dispatcher(self, args, lineno, include=include)
+
+        if isinstance(obj, BaseData) and self.commands[args[0]] != None:
+            obj.handler = self
+
+        return obj
+
 class EarlyKSHandler(superclass):
     # This handler class only processes a couple kickstart commands.  It is
     # used very early on in anaconda, when we don't yet have an interface
-- 
1.6.5.1

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux