summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrescue/restore-image.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/rescue/restore-image.sh b/rescue/restore-image.sh
index 70a7cab89..8eb564284 100755
--- a/rescue/restore-image.sh
+++ b/rescue/restore-image.sh
@@ -185,13 +185,13 @@ function expand_fs()
parted $disk -- mkpartfs primary linux-swap ${main_part_sectors}s -1s yes
mkswap -L swap $swap_part
fi
- mkdir -p $mnt_dir
- mount $main_part $mnt_dir
- grub_dir="$mnt_dir/boot/grub"
- if [ -d "$grub_dir" ]; then
- echo "(hd0) $disk" > "$grub_dir/device.map"
- fi
- umount $mnt_dir
+ mkdir -p $mnt_dir
+ mount $main_part $mnt_dir
+ grub_dir="$mnt_dir/boot/grub"
+ if [ -d "$grub_dir" ]; then
+ echo "(hd0) $disk" > "$grub_dir/device.map"
+ fi
+ umount $mnt_dir
fi
}