X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2FGetAndUpdateNodeDetails.py;h=950466b6652cc71a89aea6d4dec6712cf7df0ee9;hb=aba9d455d5735fba3a0854aeda221bc9614d385c;hp=a548888e92c211cdf7a6314443c39f3f8c1074a5;hpb=3ff6cbcdbc4627cb56993dbf275dfd984d08e567;p=bootmanager.git diff --git a/source/steps/GetAndUpdateNodeDetails.py b/source/steps/GetAndUpdateNodeDetails.py index a548888..950466b 100644 --- a/source/steps/GetAndUpdateNodeDetails.py +++ b/source/steps/GetAndUpdateNodeDetails.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python # Copyright (c) 2003 Intel Corporation # All rights reserved. @@ -23,7 +23,6 @@ def Run( vars, log ): broadcast, netmask, dns1/2, and the hostname/domainname. Expect the following keys to be set: - BOOT_CD_VERSION A tuple of the current bootcd version SKIP_HARDWARE_REQUIREMENT_CHECK Whether or not we should skip hardware requirement checks @@ -48,10 +47,6 @@ def Run( vars, log ): # make sure we have the variables we need try: - BOOT_CD_VERSION= vars["BOOT_CD_VERSION"] - if BOOT_CD_VERSION == "": - raise ValueError, "BOOT_CD_VERSION" - SKIP_HARDWARE_REQUIREMENT_CHECK= vars["SKIP_HARDWARE_REQUIREMENT_CHECK"] if SKIP_HARDWARE_REQUIREMENT_CHECK == "": raise ValueError, "SKIP_HARDWARE_REQUIREMENT_CHECK" @@ -78,6 +73,7 @@ def Run( vars, log ): ['boot_state', 'nodegroup_ids', 'interface_ids', 'model', 'site_id']))[0] vars['BOOT_STATE']= node_details['boot_state'] + vars['RUN_LEVEL']= node_details['boot_state'] vars['NODE_MODEL']= string.strip(node_details['model']) vars['SITE_ID'] = node_details['site_id'] log.write( "Successfully retrieved node record.\n" )