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