diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-03 21:50:42 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-03 21:50:42 +0000 |
commit | 1c988d55aee0fc240fcdbf3001195437ed9061c8 (patch) | |
tree | 4dfd59b9c88e863619a11f119169efb10d44228e /perl-install | |
parent | 76afc994dc32e69ed7513aca1ee78125a3b437fc (diff) | |
download | drakx-1c988d55aee0fc240fcdbf3001195437ed9061c8.tar drakx-1c988d55aee0fc240fcdbf3001195437ed9061c8.tar.gz drakx-1c988d55aee0fc240fcdbf3001195437ed9061c8.tar.bz2 drakx-1c988d55aee0fc240fcdbf3001195437ed9061c8.tar.xz drakx-1c988d55aee0fc240fcdbf3001195437ed9061c8.zip |
don't overwrite $o->{bootloader}{method} (much nicer for auto_installs)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index b1588429e..b185a5263 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -638,7 +638,7 @@ wait %d seconds for default boot. } } $bootloader->{default} ||= "linux"; - $bootloader->{method} = first(method_choices($fstab, $bootloader)); + $bootloader->{method} ||= first(method_choices($fstab, $bootloader)); } sub detect_bootloader() { |