Detangled steps. No step makes calls into another step.
[bootmanager.git] / source / steps / AuthenticateWithPLC.py
index bad3c16..55511dc 100644 (file)
@@ -1,8 +1,16 @@
+#!/usr/bin/python2
+
+# Copyright (c) 2003 Intel Corporation
+# All rights reserved.
+#
+# Copyright (c) 2004-2006 The Trustees of Princeton University
+# All rights reserved.
+
+
 import os
 
 from Exceptions import *
 import BootAPI
-import StartDebug
 
 
 AUTH_FAILURE_COUNT_FILE= "/tmp/authfailurecount"
@@ -71,8 +79,6 @@ def Run( vars, log ):
         log.write( "Maximum number of authentication failures reached.\n" )
         log.write( "Canceling boot process and going into debug mode.\n" )
 
-        StartDebug.Run( vars, log )
-
     raise BootManagerException, "Unable to authenticate node."