From 971cd91b874681bbed3b4c49f6483a8ee469e265 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Wed, 23 Sep 2009 09:12:39 +0000 Subject: Don't detect disks if we are not in bootloader or splash mode --- perl-install/NEWS | 3 +++ perl-install/standalone/drakboot | 12 +++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index dad05c3f9..be2e8c726 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- drakboot: + o don't detect disks if we are not in bootloader or splash mode + Version 12.53 - 22 September 2009 - drakxtools_http: diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index a7b253017..2b364f0dd 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -38,16 +38,18 @@ use log; my $in = 'interactive'->vnew('su'); -my $all_hds = fsedit::get_hds(); -fs::get_raw_hds('', $all_hds); -fs::get_info_from_fstab($all_hds); -my $fstab = [ fs::get::fstab($all_hds) ]; +my $all_hds; +my $fstab; +my $bootloader; my $cmdline = cat_('/proc/cmdline'); -my $bootloader; my $is_bootloader_mode = !$in->isa('interactive::gtk') || any { /^--boot$/ } @ARGV; if ($is_bootloader_mode || any { /^--splash$/ } @ARGV) { + $all_hds = fsedit::get_hds(); + fs::get_raw_hds('', $all_hds); + fs::get_info_from_fstab($all_hds); + $fstab = [ fs::get::fstab($all_hds) ]; $bootloader = bootloader::read($all_hds); if (!$bootloader) { $in->ask_okcancel('', N("No bootloader found, creating a new configuration"), 0) or $in->exit; -- cgit v1.2.1