From: Thierry Parmentelat Date: Sun, 9 Mar 2008 16:57:02 +0000 (+0000) Subject: renaming bootmanager step InstallBootstrapRPM into InstallBootstrapFS X-Git-Tag: BootManager-3.2-5~22 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=519ff34cb0bc42c6922d8ae550d35bb0cc3f564b;p=bootmanager.git renaming bootmanager step InstallBootstrapRPM into InstallBootstrapFS --- diff --git a/source/BootManager.py b/source/BootManager.py index 8d4c979..6429af5 100755 --- a/source/BootManager.py +++ b/source/BootManager.py @@ -213,7 +213,7 @@ class BootManager: # runinstaller InstallInit.Run( self.VARS, self.LOG ) InstallPartitionDisks.Run( self.VARS, self.LOG ) - InstallBootstrapRPM.Run( self.VARS, self.LOG ) + InstallBootstrapFS.Run( self.VARS, self.LOG ) InstallWriteConfig.Run( self.VARS, self.LOG ) InstallUninitHardware.Run( self.VARS, self.LOG ) self.VARS['BOOT_STATE']= 'boot' diff --git a/source/steps/InstallBootstrapRPM.py b/source/steps/InstallBootstrapFS.py similarity index 100% rename from source/steps/InstallBootstrapRPM.py rename to source/steps/InstallBootstrapFS.py diff --git a/source/steps/__init__.py b/source/steps/__init__.py index 96ab4c6..e627e1f 100644 --- a/source/steps/__init__.py +++ b/source/steps/__init__.py @@ -24,7 +24,7 @@ __all__ = ["ReadNodeConfiguration", "ChainBootNode", "ValidateNodeInstall", "StartDebug", - "InstallBootstrapRPM", + "InstallBootstrapFS", "InstallInit", "InstallPartitionDisks", "InstallUninitHardware",