allow any node that has their node_id specified to update their mac
authorAaron Klingaman <alk@cs.princeton.edu>
Thu, 28 Jul 2005 23:23:47 +0000 (23:23 +0000)
committerAaron Klingaman <alk@cs.princeton.edu>
Thu, 28 Jul 2005 23:23:47 +0000 (23:23 +0000)
addr at plc. before, it also had to have a 3.x cd.

source/steps/GetAndUpdateNodeDetails.py

index 48416fb..eb8dedb 100644 (file)
@@ -103,7 +103,7 @@ def Run( vars, log ):
 
     # only nodes that have the node_id specified directly in the configuration
     # file can change their mac address
-    if BOOT_CD_VERSION[0] == 3 and WAS_NODE_ID_IN_CONF == 1:
+    if WAS_NODE_ID_IN_CONF == 1:
         network['mac']= NETWORK_SETTINGS['mac']
         
     network['gateway']= NETWORK_SETTINGS['gateway']