diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-11 13:45:26 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-11 13:45:26 +0000 |
commit | 38991f0fbe451db1be784f1503f364ef3b527916 (patch) | |
tree | 23dfd200ecd438f2dae1c96c3563a226f43f77b1 /perl-install/install_any.pm | |
parent | 64ca82b757c600bc6e582ff018e2306c06070ed8 (diff) | |
download | drakx-38991f0fbe451db1be784f1503f364ef3b527916.tar drakx-38991f0fbe451db1be784f1503f364ef3b527916.tar.gz drakx-38991f0fbe451db1be784f1503f364ef3b527916.tar.bz2 drakx-38991f0fbe451db1be784f1503f364ef3b527916.tar.xz drakx-38991f0fbe451db1be784f1503f364ef3b527916.zip |
reflect lang->locale changes in saving auto_inst.cfg file
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 27ee2e42f..af380f3e7 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -697,7 +697,7 @@ sub g_auto_install { my @fields = qw(mntpoint type size); $o->{partitions} = [ map { my %l; @l{@fields} = @$_{@fields}; \%l } grep { $_->{mntpoint} } @{$::o->{fstab}} ]; - exists $::o->{$_} and $o->{$_} = $::o->{$_} foreach qw(lang authentication mouse netc timezone superuser intf keyboard users partitioning isUpgrade manualFstab nomouseprobe crypto security security_user libsafe netcnx useSupermount autoExitInstall mkbootdisk X services); #- TODO modules bootloader + 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 mkbootdisk X services); #- TODO modules bootloader if ($::o->{printer}) { $o->{printer}{$_} = $::o->{printer}{$_} foreach qw(SPOOLER DEFAULT BROWSEPOLLADDR BROWSEPOLLPORT MANUALCUPSCONFIG); |