always regenerate initrd before booting in case hardware changes or new kernel is...
[bootmanager.git] / source / steps / __init__.py
1 #!/usr/bin/python2
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            "CheckHardwareRequirements",
20            "SendHardwareConfigToPLC",
21            "InitializeBootManager",
22            "UpdateNodeConfiguration",
23            "CheckForNewDisks",
24            "ChainBootNode",
25            "ValidateNodeInstall",
26            "StartDebug",
27            "InstallBootstrapRPM",
28            "InstallBuildVServer",
29            "InstallInit",
30            "InstallNodeInit",
31            "InstallPartitionDisks",
32            "InstallUninitHardware",
33            "InstallWriteConfig",
34            "MakeInitrd",
35            "WriteNetworkConfig",
36            "WriteModprobeConfig"]