diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-26 11:22:34 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-26 11:22:34 +0000 |
commit | 0976a26d88055464cffc28a0cbf870cd4ee9f142 (patch) | |
tree | 30097c85c7a81e655f0988035c00f59f45145483 /perl-install/install_steps.pm | |
parent | dc8c9e96aab7264968037edf5ef660888b25a9fa (diff) | |
download | drakx-0976a26d88055464cffc28a0cbf870cd4ee9f142.tar drakx-0976a26d88055464cffc28a0cbf870cd4ee9f142.tar.gz drakx-0976a26d88055464cffc28a0cbf870cd4ee9f142.tar.bz2 drakx-0976a26d88055464cffc28a0cbf870cd4ee9f142.tar.xz drakx-0976a26d88055464cffc28a0cbf870cd4ee9f142.zip |
move modules::write_pcmcia before install packages
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 8ed192198..3a4c0e163 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -299,6 +299,9 @@ sub beforeInstallPackages { #- some packages need such files for proper installation. install_any::write_fstab($o); + #- configure PCMCIA services if needed (gnome-panel use it to detect pcmcia) + modules::write_pcmcia($o->{prefix}, $o->{pcmcia}); + require network; network::add2hosts("$o->{prefix}/etc/hosts", "localhost.localdomain", "127.0.0.1"); @@ -407,9 +410,6 @@ Consoles 1,3,4,7 may also contain interesting information"; #- generate /etc/lvmtab needed for rc.sysinit run_program::rooted($o->{prefix}, 'vgscan') if -e '/etc/lvmtab'; - #- configure PCMCIA services if needed. - modules::write_pcmcia($o->{prefix}, $o->{pcmcia}); - #- for mandrake_firstime touch "$o->{prefix}/var/lock/TMP_1ST"; |