diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-12-05 19:34:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-12-05 19:34:44 +0000 |
commit | fcc4ef31243b9e51adb718862d03762221bb37c2 (patch) | |
tree | 2e3ab26af93f802c02b20bc081f6235635817436 /perl-install/install_any.pm | |
parent | 243305d3fdcc29ff8d8cf33ae8770700e18cdd0b (diff) | |
download | drakx-fcc4ef31243b9e51adb718862d03762221bb37c2.tar drakx-fcc4ef31243b9e51adb718862d03762221bb37c2.tar.gz drakx-fcc4ef31243b9e51adb718862d03762221bb37c2.tar.bz2 drakx-fcc4ef31243b9e51adb718862d03762221bb37c2.tar.xz drakx-fcc4ef31243b9e51adb718862d03762221bb37c2.zip |
don't allow partition types we don't know how to format in {partitions} for auto_installs (eg of bad type: ntfs)
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 0bd973694..ea9e8fe9d 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1002,7 +1002,11 @@ sub g_auto_install { $o->{default_packages} = pkgs::selected_leaves($::o->{packages}); my @fields = qw(mntpoint fs_type size); - $o->{partitions} = [ map { my %l; @l{@fields} = @$_{@fields}; \%l } grep { $_->{mntpoint} } @{$::o->{fstab}} ]; + $o->{partitions} = [ map { + my %l; @l{@fields} = @$_{@fields}; \%l; + } grep { + $_->{mntpoint} && fs::format::known_type($_); + } @{$::o->{fstab}} ]; exists $::o->{$_} and $o->{$_} = $::o->{$_} foreach qw(locale authentication mouse netc timezone superuser intf keyboard users partitioning isUpgrade manualFstab nomouseprobe crypto security security_user libsafe netcnx useSupermount autoExitInstall X services); #- TODO modules bootloader |