diff options
author | pad <pad@mandriva.com> | 1999-09-04 20:12:44 +0000 |
---|---|---|
committer | pad <pad@mandriva.com> | 1999-09-04 20:12:44 +0000 |
commit | 8d5fe6fe6ab47eb0b460fd954b047313a7e431bc (patch) | |
tree | 72a744f93e3eac4696736f2054bad7da5730b612 /perl-install/install2.pm | |
parent | ae0f6ee505aea267da6900eb199f8fd1659a2b94 (diff) | |
download | drakx-backup-do-not-use-8d5fe6fe6ab47eb0b460fd954b047313a7e431bc.tar drakx-backup-do-not-use-8d5fe6fe6ab47eb0b460fd954b047313a7e431bc.tar.gz drakx-backup-do-not-use-8d5fe6fe6ab47eb0b460fd954b047313a7e431bc.tar.bz2 drakx-backup-do-not-use-8d5fe6fe6ab47eb0b460fd954b047313a7e431bc.tar.xz drakx-backup-do-not-use-8d5fe6fe6ab47eb0b460fd954b047313a7e431bc.zip |
focus + packages dependencies
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 69d66d7e1..25333ee9e 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -247,7 +247,7 @@ $o = $::o = { bootloader => { onmbr => 1, linear => 0 }, autoSCSI => 0, mkbootdisk => "fd0", # no mkbootdisk if 0 or undef, find a floppy with 1 - packages => [ qw() ], +# packages => [ qw() ], partitioning => { clearall => $::testing, eraseBadPartitions => 0, auto_allocate => 0, autoformat => 0 }, # partitions => [ # { mntpoint => "/boot", size => 16 << 11, type => 0x83 }, @@ -295,8 +295,8 @@ $o = $::o = { SMBPASSWD => "passowrd", SMBWORKGROUP => "AS3", }, - superuser => { password => 'a', shell => '/bin/bash', realname => 'God' }, - user => { name => 'foo', password => 'bar', home => '/home/foo', shell => '/bin/bash', realname => 'really, it is foo' }, +# superuser => { password => 'a', shell => '/bin/bash', realname => 'God' }, +# user => { name => 'foo', password => 'bar', home => '/home/foo', shell => '/bin/bash', realname => 'really, it is foo' }, # keyboard => 'de', # display => "192.168.1.9:0", @@ -364,7 +364,9 @@ sub selectInstallClass { $o->selectInstallClass(@install_classes); $::expert = $o->{installClass} eq "expert"; - + addToBeDone { + install_any::setPackages($o); #update package list + } 'formatPartitions'; } #------------------------------------------------------------------------------ |