diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-09-23 17:20:51 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-09-23 17:20:51 +0000 |
commit | 6f9788f30ece00fc67adcde64c16f2c8df01898d (patch) | |
tree | 93964d11b97d70c4b95d35c342e4d5be5152d02d /perl-install | |
parent | 49da0edfe4e11c357d99a157aa739c275da71b34 (diff) | |
download | drakx-6f9788f30ece00fc67adcde64c16f2c8df01898d.tar drakx-6f9788f30ece00fc67adcde64c16f2c8df01898d.tar.gz drakx-6f9788f30ece00fc67adcde64c16f2c8df01898d.tar.bz2 drakx-6f9788f30ece00fc67adcde64c16f2c8df01898d.tar.xz drakx-6f9788f30ece00fc67adcde64c16f2c8df01898d.zip |
allow to specify display manager in $o->{dm}
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/steps.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm index bec45310a..6d0e0094f 100644 --- a/perl-install/install/steps.pm +++ b/perl-install/install/steps.pm @@ -724,6 +724,7 @@ sub addUser { my $autologin = any::get_autologin(); $autologin->{user} = $o->{autologin}; $autologin->{desktop} = $o->{desktop} if $o->{desktop}; + $autologin->{dm} = $o->{dm} if $o->{dm}; any::set_autologin($o->do_pkgs, $autologin); install::any::disable_user_view() if @$users == (); |