From 434360bcefbb760550ab359ea5f8b12ba5eab2bd Mon Sep 17 00:00:00 2001 From: Antoine Ginies Date: Thu, 22 Jan 2004 14:40:08 +0000 Subject: split modify wizard to fit wizard window --- pxe_wizard/Pxe.pm | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'pxe_wizard') 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."), -- cgit v1.2.1