svn:keywords
[bootmanager.git] / source / steps / __init__.py
1 #!/usr/bin/python
2 #
3 # $Id$
4 # $URL$
5 #
6 # Copyright (c) 2003 Intel Corporation
7 # All rights reserved.
8 #
9 # Copyright (c) 2004-2006 The Trustees of Princeton University
10 # All rights reserved.
11
12
13 """
14 This directory contains individual step classes
15 """
16
17 __all__ = ["ReadNodeConfiguration",
18            "AuthenticateWithPLC",
19            "GetAndUpdateNodeDetails",
20            "ConfirmInstallWithUser",
21            "UpdateBootStateWithPLC",
22            "UpdateRunLevelWithPLC",
23            "CheckHardwareRequirements",
24            "SendHardwareConfigToPLC",
25            "InitializeBootManager",
26            "UpdateNodeConfiguration",
27            "CheckForNewDisks",
28            "ChainBootNode",
29            "ValidateNodeInstall",
30            "StartDebug",
31            "StartRunlevelAgent",
32            "InstallBootstrapFS",
33            "InstallInit",
34            "InstallPartitionDisks",
35            "InstallUninitHardware",
36            "InstallWriteConfig",
37            "MakeInitrd",
38            "WriteNetworkConfig",
39            "WriteModprobeConfig"]