shebags mention python2 explicitly
[bootmanager.git] / source / steps / __init__.py
index a9ca03d..45b1dbf 100644 (file)
@@ -1,3 +1,12 @@
+#!/usr/bin/python2
+#
+# Copyright (c) 2003 Intel Corporation
+# All rights reserved.
+#
+# Copyright (c) 2004-2006 The Trustees of Princeton University
+# All rights reserved.
+
+
 """
 This directory contains individual step classes
 """
@@ -7,6 +16,8 @@ __all__ = ["ReadNodeConfiguration",
            "GetAndUpdateNodeDetails",
            "ConfirmInstallWithUser",
            "UpdateBootStateWithPLC",
+           "UpdateLastBootOnce",
+           "UpdateRunLevelWithPLC",
            "CheckHardwareRequirements",
            "SendHardwareConfigToPLC",
            "InitializeBootManager",
@@ -15,10 +26,14 @@ __all__ = ["ReadNodeConfiguration",
            "ChainBootNode",
            "ValidateNodeInstall",
            "StartDebug",
-           "InstallBootstrapRPM",
-           "InstallBuildVServer",
+           "StartRunlevelAgent",
+           "StopRunlevelAgent",
+           "InstallBootstrapFS",
            "InstallInit",
-           "InstallNodeInit",
            "InstallPartitionDisks",
            "InstallUninitHardware",
-           "InstallWriteConfig"]
+           "InstallWriteConfig",
+           "MakeInitrd",
+           "WriteNetworkConfig",
+           "WriteModprobeConfig",
+           "AnsibleHook"]