diff options
author | Antoine Ginies <aginies@mandriva.com> | 2004-01-22 14:40:08 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2004-01-22 14:40:08 +0000 |
commit | 434360bcefbb760550ab359ea5f8b12ba5eab2bd (patch) | |
tree | 5c0b96512a5149b25fc938630b159ee964f951e2 | |
parent | dd2fd4b75b207f314c7d1a4dacb70ec43089eb4b (diff) | |
download | drakwizard-434360bcefbb760550ab359ea5f8b12ba5eab2bd.tar drakwizard-434360bcefbb760550ab359ea5f8b12ba5eab2bd.tar.gz drakwizard-434360bcefbb760550ab359ea5f8b12ba5eab2bd.tar.bz2 drakwizard-434360bcefbb760550ab359ea5f8b12ba5eab2bd.tar.xz drakwizard-434360bcefbb760550ab359ea5f8b12ba5eab2bd.zip |
split modify wizard to fit wizard window
-rw-r--r-- | pxe_wizard/Pxe.pm | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/pxe_wizard/Pxe.pm b/pxe_wizard/Pxe.pm index a5a64e2c..9927139f 100644 --- a/pxe_wizard/Pxe.pm +++ b/pxe_wizard/Pxe.pm @@ -150,19 +150,25 @@ $o->{pages} = { next => 'gomodify', }, gomodify => { - name => N("Options to add to PXE boot disk") . "\n" . N("Server IP: IP address of server wich contain installation directory. You can create one with MDK install server wizard.") . "\n" . N("Install directory: full path to MDK install server directory") . "\n" . N("Installation method: choose nfs/http to install via nfs/http.") . "\n" . N("Network client interface: through wich interface client should be installed.") . "\n" . N("Ramsize: adjust ramsize on boot disk.") . "\n" . N("VGA option: if you encounter some problem whith VGA, please adjust. ") . "\n" . N("Acpi option: Advanced Configuration and Power Interface"), + name => N("Options to add to PXE boot disk") . "\n\n" . N("Server IP: IP address of server wich contain installation directory. You can create one with MDK install server wizard.") . "\n" . N("Install directory: full path to MDK install server directory") . "\n" . N("Installation method: choose nfs/http to install via nfs/http."), data => [ { label => N("Boot image to modify:"), fixed_val => \$o->{var}{i} }, { label => N("Server IP:"), val => \$o->{var}{IP} }, { label => N("Install directory:"), val => \$o->{var}{DIR} }, { label => N("Installation method:"), val => \$o->{var}{METHOD}, fixed_list => \@list_method }, - { label => N("Network client interface:"), val => \$o->{var}{ETH}, fixed_list => \@list_eth }, - { label => N("Ramsize:"), val => \$o->{var}{RAM}, fixed_list => \@list_ram }, - { label => N("VGA option:"), val => \$o->{var}{VGA}, fixed_list => \@list_vga }, - { label => N("Acpi option:"), val => \$o->{var}{ACPI}, fixed_list => \@list_acpi }, - { label => N("Apic option:"), val => \$o->{var}{APIC}, fixed_list => \@list_apic }, ], - next => 'summarymodify', + next => 'gomodify2', + }, + gomodify2 => { + name => N("Network client interface: through wich interface client should be installed.") . "\n" . N("Ramsize: adjust ramsize on boot disk.") . "\n" . N("VGA option: if you encounter some problem whith VGA, please adjust. ") . "\n" . N("Acpi option: Advanced Configuration and Power Interface"), + data => [ + { label => N("Network client interface:"), val => \$o->{var}{ETH}, fixed_list => \@list_eth }, + { label => N("Ramsize:"), val => \$o->{var}{RAM}, fixed_list => \@list_ram }, + { label => N("VGA option:"), val => \$o->{var}{VGA}, fixed_list => \@list_vga }, + { label => N("Acpi option:"), val => \$o->{var}{ACPI}, fixed_list => \@list_acpi }, + { label => N("Apic option:"), val => \$o->{var}{APIC}, fixed_list => \@list_apic }, + ], + next => 'summarymodify', }, pxeserver => { name => N("Set PXE server") . "\n\n" . N("We need to use a special dhcpd.conf with PXE parameter.") . "\n" . N("This will configure all needed default configurations files to set a PXE server."), |