diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-05-30 11:00:55 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-05-30 11:00:55 +0000 |
commit | 4b4f9f315bc66a6ba4db04e8cdebcccee398f40b (patch) | |
tree | 6e2eff960a52df1081dab419e59565ecbb53c80d /perl-install/any.pm | |
parent | a89672a52248dd56ae1f1ba691a1e476820644a6 (diff) | |
download | drakx-4b4f9f315bc66a6ba4db04e8cdebcccee398f40b.tar drakx-4b4f9f315bc66a6ba4db04e8cdebcccee398f40b.tar.gz drakx-4b4f9f315bc66a6ba4db04e8cdebcccee398f40b.tar.bz2 drakx-4b4f9f315bc66a6ba4db04e8cdebcccee398f40b.tar.xz drakx-4b4f9f315bc66a6ba4db04e8cdebcccee398f40b.zip |
move netprofile stuff in network::network
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 9b99b5ba2..085b3abe7 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -353,7 +353,7 @@ sub setupBootloader__entries { require Xconfig::resolution_and_depth; my $Modify = sub { - require network::netconnect; #- to list network profiles + require network::network; #- to list network profiles my ($e) = @_; my $default = my $old_default = $e->{label} eq $b->{default}; my $vga = Xconfig::resolution_and_depth::from_bios($e->{vga}); @@ -369,7 +369,7 @@ sub setupBootloader__entries { { label => N("Video mode"), val => \$vga, list => [ '', Xconfig::resolution_and_depth::bios_vga_modes() ], format => \&Xconfig::resolution_and_depth::to_string, advanced => 1 }, ), { label => N("Initrd"), val => \$e->{initrd}, list => [ map { if_(/^initrd/, "/boot/$_") } all("$::prefix/boot") ], not_edit => 0, advanced => 1 }, -{ label => N("Network profile"), val => \$netprofile, list => [ sort(uniq('', $netprofile, network::netconnect::get_profiles())) ], advanced => 1 }, +{ label => N("Network profile"), val => \$netprofile, list => [ sort(uniq('', $netprofile, network::network::netprofile_list())) ], advanced => 1 }, ); } else { @l = ( |