diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-07-29 20:06:30 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-07-29 20:06:30 +0000 |
commit | 4bb92a5afc413774bbc1e94b70bb1064bb40666f (patch) | |
tree | 7420706d72b978b1d678de960ae43e5b89f65fb3 | |
parent | 75641167fd5bddaf51cd9350c7f73e3dcd85e0e1 (diff) | |
download | drakx-backup-do-not-use-4bb92a5afc413774bbc1e94b70bb1064bb40666f.tar drakx-backup-do-not-use-4bb92a5afc413774bbc1e94b70bb1064bb40666f.tar.gz drakx-backup-do-not-use-4bb92a5afc413774bbc1e94b70bb1064bb40666f.tar.bz2 drakx-backup-do-not-use-4bb92a5afc413774bbc1e94b70bb1064bb40666f.tar.xz drakx-backup-do-not-use-4bb92a5afc413774bbc1e94b70bb1064bb40666f.zip |
(g_auto_install): also save chosen on_services (this is the only thing left to do to make it work :)
-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 89a43aecd..c121f04a4 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -693,7 +693,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 netcnx useSupermount autoExitInstall mkbootdisk X); #- TODO modules bootloader + exists $::o->{$_} and $o->{$_} = $::o->{$_} foreach qw(lang authentication mouse netc timezone superuser intf keyboard users partitioning isUpgrade manualFstab nomouseprobe crypto security netcnx useSupermount autoExitInstall mkbootdisk X services); #- TODO modules bootloader if (my $printer = $::o->{printer}) { $o->{printer}{$_} = $::o->{printer}{$_} foreach qw(SPOOLER DEFAULT BROWSEPOLLADDR BROWSEPOLLPORT MANUALCUPSCONFIG); |