summaryrefslogtreecommitdiffstats
path: root/perl-install/bootloader.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-08-03 21:50:42 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-08-03 21:50:42 +0000
commit1c988d55aee0fc240fcdbf3001195437ed9061c8 (patch)
tree4dfd59b9c88e863619a11f119169efb10d44228e /perl-install/bootloader.pm
parent76afc994dc32e69ed7513aca1ee78125a3b437fc (diff)
downloaddrakx-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/bootloader.pm')
-rw-r--r--perl-install/bootloader.pm2
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() {