X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2F__init__.py;h=45b1dbf4b95fc25d5387bc97ec7dc45f542a3006;hb=6dbdbad233ca8770d2f9913c161a3da3f7b8130d;hp=a9ca03d7c339526753d49741d03b3dc485d20d5d;hpb=86fe59b6cfbf1e9e642ae6d425e06f55a9653072;p=bootmanager.git diff --git a/source/steps/__init__.py b/source/steps/__init__.py index a9ca03d..45b1dbf 100644 --- a/source/steps/__init__.py +++ b/source/steps/__init__.py @@ -1,3 +1,12 @@ +#!/usr/bin/python2 +# +# 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 """ @@ -7,6 +16,8 @@ __all__ = ["ReadNodeConfiguration", "GetAndUpdateNodeDetails", "ConfirmInstallWithUser", "UpdateBootStateWithPLC", + "UpdateLastBootOnce", + "UpdateRunLevelWithPLC", "CheckHardwareRequirements", "SendHardwareConfigToPLC", "InitializeBootManager", @@ -15,10 +26,14 @@ __all__ = ["ReadNodeConfiguration", "ChainBootNode", "ValidateNodeInstall", "StartDebug", - "InstallBootstrapRPM", - "InstallBuildVServer", + "StartRunlevelAgent", + "StopRunlevelAgent", + "InstallBootstrapFS", "InstallInit", - "InstallNodeInit", "InstallPartitionDisks", "InstallUninitHardware", - "InstallWriteConfig"] + "InstallWriteConfig", + "MakeInitrd", + "WriteNetworkConfig", + "WriteModprobeConfig", + "AnsibleHook"]