diff options
author | Antoine Ginies <aginies@mandriva.com> | 2008-09-18 07:46:50 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2008-09-18 07:46:50 +0000 |
commit | 45d3be1020a1520db765c2675239225116aeb1ef (patch) | |
tree | 5d901d798660dd41aa2e2c70aaa28c885d1ecece | |
parent | 0bdf8468c2bcf1aed13da56e8912d0113d1a0af2 (diff) | |
download | drakpxelinux-45d3be1020a1520db765c2675239225116aeb1ef.tar drakpxelinux-45d3be1020a1520db765c2675239225116aeb1ef.tar.gz drakpxelinux-45d3be1020a1520db765c2675239225116aeb1ef.tar.bz2 drakpxelinux-45d3be1020a1520db765c2675239225116aeb1ef.tar.xz drakpxelinux-45d3be1020a1520db765c2675239225116aeb1ef.zip |
add dolly method, update svn info to get the source, remove call to next step in last step's wizard, fix online documentation's url
-rw-r--r-- | drakpxelinux.pl | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drakpxelinux.pl b/drakpxelinux.pl index 16a4973..42b1081 100644 --- a/drakpxelinux.pl +++ b/drakpxelinux.pl @@ -18,9 +18,8 @@ # 02111-1307, USA. # Quick configuration of PXE menu parameters -# use with care developement release.... # thx R1 for test and some debug -# cvs.mandrakesoft.com module: /soft/drakpxelinux +# svn.mandriva.com/svn/soft/drakpxelinux # i18n: IMPORTANT: to get correct namespace (drakpxelinux instead of libDrakX) @@ -148,7 +147,7 @@ if (!$::testing && !$in->do_pkgs->ensure_is_installed('pxe', $network::pxe::pxe_ save_config($network::pxe::pxelinux_config_file); -my @list_method = qw(nfs http ka); push @list_method, ""; +my @list_method = qw(nfs http ka dolly); push @list_method, ""; my @list_ram = qw(32000 48000 64000 96000 128000); my @list_eth = qw(auto eth0 eth1 eth2); push @list_eth, ""; @@ -369,7 +368,6 @@ sub wizard_add_entry { data => [ { label => N("The wizard successfully added the PXE boot image.") } ], no_back => 1, end => 1, - next => 0, }, } }); @@ -712,7 +710,7 @@ sub show_help() { info_dialog("help", gtkpack_(gtkset_border_width(Gtk2::VBox->new, 3), 0, $help, 0, gtksignal_connect(set_help_tip(Gtk2::Button->new(N("online PXE documentation")), 'helponline'), - clicked => sub { system("/usr/bin/www-browser http://clic.mandriva.com/documentation/pxe/ &") } + clicked => sub { system("/usr/bin/www-browser http://people.mandriva.com/~aginies/doc/pxe/ &") } ), ), ); @@ -776,7 +774,6 @@ sub wizard_pxe_server() { data => [ { label => N("The wizard successfully configured your PXE server. Now you can configure the PXE menu entry.") } ], no_back => 1, end => 1, - next => 0 }, }, }); |