From 75c605a884e8f609998de701e800950179df48d0 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 4 Jan 2009 17:55:53 +0100 Subject: [PATCH] 'corrected S_GRUB' --- usr/share/archboot/installer/setup | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/usr/share/archboot/installer/setup b/usr/share/archboot/installer/setup index d8c09290a..0dfe48e7c 100755 --- a/usr/share/archboot/installer/setup +++ b/usr/share/archboot/installer/setup @@ -1367,15 +1367,14 @@ EOF return 1 fi DIALOG --msgbox "GRUB was successfully installed." 0 0 + S_GRUB=1 if [ "$(blkid -c /dev/null | grep TYPE=\"mdraid\")" ]; then DIALOG --defaultno --yesno "You have your system installed on software raid?\nAnswer 'YES' to install grub to another hard disk." 0 0 if [ $? -eq 0 ]; then S_GRUB="" - else - S_GRUB=1 fi else - S_GRUB=1 + fi done }