Merge remote-tracking branch 'origin/5.0' into bootmanager-vender
[bootmanager.git] / source / steps / __init__.py
diff --git a/source/steps/__init__.py b/source/steps/__init__.py
new file mode 100644 (file)
index 0000000..bfef9bc
--- /dev/null
@@ -0,0 +1,38 @@
+#!/usr/bin/python
+#
+# 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
+"""
+
+__all__ = ["ReadNodeConfiguration",
+           "AuthenticateWithPLC",
+           "GetAndUpdateNodeDetails",
+           "ConfirmInstallWithUser",
+           "UpdateBootStateWithPLC",
+           "UpdateLastBootOnce",
+           "UpdateRunLevelWithPLC",
+           "CheckHardwareRequirements",
+           "SendHardwareConfigToPLC",
+           "InitializeBootManager",
+           "UpdateNodeConfiguration",
+           "CheckForNewDisks",
+           "ChainBootNode",
+           "ValidateNodeInstall",
+           "StartDebug",
+           "StartRunlevelAgent",
+           "StopRunlevelAgent",
+           "InstallBootstrapFS",
+           "InstallInit",
+           "InstallPartitionDisks",
+           "InstallUninitHardware",
+           "InstallWriteConfig",
+           "MakeInitrd",
+           "WriteNetworkConfig",
+           "WriteModprobeConfig"]