Add AnsibleHook step to list of available modules
[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            "UpdateLastBootOnce",
20            "UpdateRunLevelWithPLC",
21            "CheckHardwareRequirements",
22            "SendHardwareConfigToPLC",
23            "InitializeBootManager",
24            "UpdateNodeConfiguration",
25            "CheckForNewDisks",
26            "ChainBootNode",
27            "ValidateNodeInstall",
28            "StartDebug",
29            "StartRunlevelAgent",
30            "StopRunlevelAgent",
31            "InstallBootstrapFS",
32            "InstallInit",
33            "InstallPartitionDisks",
34            "InstallUninitHardware",
35            "InstallWriteConfig",
36            "MakeInitrd",
37            "WriteNetworkConfig",
38            "WriteModprobeConfig",
39            "AnsibleHook"]