diff options
-rwxr-xr-x | perl-install/standalone/drakboot | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 4368ec60a..3b8862552 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -54,7 +54,6 @@ fs::get_mntpoints_from_fstab($fstab); ask: any::setupBootloader($in, $bootloader, $hds, $fstab, $ENV{SECURE_LEVEL}) or $in->exit(0); - eval { bootloader::install('', $bootloader, $fstab, $hds) }; if ($@) { @@ -65,4 +64,6 @@ if ($@) { goto ask; } -$in->exit(0); +!$::isEmbedded and $in->exit(0); +kill(USR1, $::CCPID); +goto ask; |