home *** CD-ROM | disk | FTP | other *** search
- /**
- * File:
- * lvm_config.ycp
- *
- * Module:
- * configuration of lvm in installed system
- * Summary:
- *
- * Authors:
- * mike <mike@suse.de>
- *
- * $Id: lvm_config.ycp 29327 2006-03-23 13:01:30Z fehr $
- *
- */
-
-
- {
-
- textdomain "storage";
-
- import "CommandLine";
- import "Label";
- import "Wizard";
- import "Package";
- import "Storage";
-
- include "wizard/sequencer.ycp";
- include "partitioning/custom_part_testdata.ycp";
- include "partitioning/partition_defines.ycp";
- include "partitioning/lvm_ui_dialogs.ycp";
-
- /////////////////////////////////////////////////////////////////////
- // WORKFLOW //
- /////////////////////////////////////////////////////////////////////
-
- define symbol Dummy_NextStep()
- ``{
- Popup::ContinueCancel( Label::NextButton() );
- return( `next );
- }
-
- map Aliases = $[
- "config_ui" : ``(WFM::CallFunction("lvm_config_ui")),
- "apply_prepdisk" : ``(WFM::CallFunction("inst_prepdisk")),
- "finish_prepdisk" : ``(WFM::CallFunction("inst_prepdisk"))
- ];
-
- map dummy_Aliases = $[
- "config_ui" : ``(WFM::CallFunction("lvm_config_ui")),
- "apply_prepdisk" : ``(Dummy_NextStep() ),
- "finish_prepdisk" : ``(Dummy_NextStep() )
- ];
-
- map Sequence = $[
- "ws_start" : "config_ui",
-
- "config_ui" : $[ `abort : `abort ,
- `apply : "apply_prepdisk",
- `finish : "finish_prepdisk" ],
- "apply_prepdisk" : $[ `abort : `abort ,
- `next : "config_ui" ],
- "finish_prepdisk": $[ `abort : `abort ,
- `next : `end ]
- ];
-
-
- /////////////////////////////////////////////////////////////////////
- // I N I T //
- /////////////////////////////////////////////////////////////////////
-
- define any LVMSequence () {
-
- //////////////////////////////////////////////////////////////////////
- // Reset Info about LVM and Partitioning
- //////////////////////////////////////////////////////////////////////
-
- Wizard::SetDesktopIcon("lvm_config");
-
- //---------------------------------------------------------------
-
- term diag =
- `VBox( `Heading( _("LVM Configuration") ),
- `HBox( get_config_content( [], [], [""], " 0GB", " 0GB", true )),
- `HBox(
- `Left( `PushButton(`id(`help), Label::HelpButton())),
- `Left( `PushButton(`id(`abort), Label::AbortButton())),
- // button text
- `Right(`PushButton(`id(`apply), _("A&pply"))),
- `Right(`PushButton(`id(`finish), Label::FinishButton()))
- )
- );
- UI::OpenDialog( `opt(`defaultsize), diag );
-
- Package::InstallAll( ["lvm2"] );
-
- Storage::SwitchUiAutomounter( false );
-
- /////////////////////////////////////////////////////////////////
- any result = WizardSequencer (Aliases, Sequence);
- // any result = WizardSequencer (dummy_Aliases, Sequence);
- /////////////////////////////////////////////////////////////////////////////////
-
- Storage::SwitchUiAutomounter( true );
-
- if( result == `end )
- {
- // popup text
- Popup::Message (_("All the settings were written and are ready to use."));
- }
-
- UI::CloseDialog();
- return result;
- }
-
- /* -- the command line description map -------------------------------------- */
- map cmdline = $[
- "id" : "lvm_comfig",
- // translators: command line help text for lvm_config module
- "help" : _("LVM configuration"),
- // custom help text (should replace default one)
- "customhelp" : _("Command line interface for the lvm_config module is not available"),
- "guihandler" : LVMSequence,
- ];
-
- CommandLine::Run (cmdline);
- return true;
-
- }
-