diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-09-23 17:13:48 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-09-23 17:13:48 +0000 |
commit | 9113ff8eea83500109190e56a46e4b6d72ef448c (patch) | |
tree | d616e9a19fd5b7a618c80242bdaab4148fb8cdca /perl-install/standalone/drakboot | |
parent | c0b4e0aba4f8b5d1235e7b473359732d00cdcd1b (diff) | |
download | drakx-9113ff8eea83500109190e56a46e4b6d72ef448c.tar drakx-9113ff8eea83500109190e56a46e4b6d72ef448c.tar.gz drakx-9113ff8eea83500109190e56a46e4b6d72ef448c.tar.bz2 drakx-9113ff8eea83500109190e56a46e4b6d72ef448c.tar.xz drakx-9113ff8eea83500109190e56a46e4b6d72ef448c.zip |
pass autologin hash to set_autologin
Diffstat (limited to 'perl-install/standalone/drakboot')
-rwxr-xr-x | perl-install/standalone/drakboot | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index cb77da9f1..0cce1384e 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -224,10 +224,13 @@ sub autologin_choice() { Xconfig::various::runlevel($x_mode ? 5 : 3); $::testing and return; if ($auto_buttons[1]->get_active) { - any::set_autologin($in->do_pkgs, $user_combo->entry->get_text, $desktop_combo->entry->get_text); + $auto_mode->{user} = $user_combo->entry->get_text; + $auto_mode->{desktop} = $desktop_combo->entry->get_text; } else { - any::set_autologin($in->do_pkgs); - } + $auto_mode->{user} = undef; + $auto_mode->{desktop} = undef; + } + any::set_autologin($in->do_pkgs, $auto_mode); }); } |