* improve availability - reliability : start a fallback sshd very early in the bm...
[bootmanager.git] / source / steps / InstallWriteConfig.py
index 88b89ab..c755d56 100644 (file)
@@ -34,8 +34,6 @@ def Run( vars, log ):
     PLCONF_DIR              The directory to store the configuration file in
     INTERFACE_SETTINGS  A dictionary of the values from the network
                                 configuration file
-    BOOT_CD_VERSION          A tuple of the current bootcd version
-    
     Sets the following variables:
     None
     
@@ -65,10 +63,6 @@ def Run( vars, log ):
         if INTERFACE_SETTINGS == "":
             raise ValueError, "INTERFACE_SETTINGS"
 
-        BOOT_CD_VERSION= vars["BOOT_CD_VERSION"]
-        if BOOT_CD_VERSION == "":
-            raise ValueError, "BOOT_CD_VERSION"
-
     except KeyError, var:
         raise BootManagerException, "Missing variable in vars: %s\n" % var
     except ValueError, var: