diff options
author | jonas <jonas@8f53b18a-e215-0410-8885-9f593d34873e> | 2006-10-22 19:10:52 +0000 |
---|---|---|
committer | jonas <jonas@8f53b18a-e215-0410-8885-9f593d34873e> | 2006-10-22 19:10:52 +0000 |
commit | bd5fe89f34712cee3aaaa136db954e8000967b08 (patch) | |
tree | dc0546355a48e94da1c2e760c6d425197046fd74 | |
parent | 6cd2516d34cab8aeef03072a99c5abd30b978e54 (diff) |
Idempotency fix: Overwrite grub_host_device.map when configuring.
git-svn-id: svn+ssh://xayide/home/jonas/private_svn/fleshybrid/homebase@45 8f53b18a-e215-0410-8885-9f593d34873e
-rwxr-xr-x | 3_configure.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3_configure.sh b/3_configure.sh index 98199c7..4ec72d0 100755 --- a/3_configure.sh +++ b/3_configure.sh @@ -12,7 +12,7 @@ if ! ./chroot.sh grep -q 'root::' "/etc/shadow"; then fi # Install MBR, GRUB and SYSLINUX -[ -n "$grubdev_host" ] && mkgrubdevmap "$usbdev_host" >>"$baseworkdir/grub_host_device.map" +[ -n "$grubdev_host" ] && mkgrubdevmap "$usbdev_host" >"$baseworkdir/grub_host_device.map" if [ "$MBR" = "yes" ]; then [ "$MBR" = "yes" ] && install-mbr "$usbdev_host" # [ -n "$syslinuxdev_host" ] && syslinux "$bootdev_host" |