~fai/fai/fai.hardy

« back to all changes in this revision

Viewing changes to examples/simple/files/boot/grub/menu.lst/postinst

  • Committer: Reinhard Tartler
  • Date: 2008-02-14 09:38:36 UTC
  • mfrom: (1.1.4052 ubuntu)
  • Revision ID: siretart@tauware.de-20080214093836-7h0setrddcbdu62q
Upload of 3.2.1-0ubuntu1 to gutsy

this merge contains all commits up to to release of 3.2.1-0ubuntu1 to
gutsy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/bash
 
2
 
 
3
error=0 ; trap "error=$((error|1))" ERR
 
4
 
 
5
set -a
 
6
 
 
7
# during softupdate use this file
 
8
[ -r $target/var/log/fai/disk_var.sh ] && . $target/var/log/fai/disk_var.sh
 
9
 
 
10
# if class NOMBR is defined, write boot loader into root partition, not into mbr
 
11
ifclass NOMBR && BOOT_DEVICE=$BOOT_PARTITION
 
12
 
 
13
grub-install --no-floppy --root-directory=$target $BOOT_DEVICE
 
14
GROOT=$(device2grub $BOOT_PARTITION)
 
15
perl -pi -e 's/#(\w+)#/$ENV{$1}/' $2
 
16
$ROOTCMD /usr/sbin/update-grub
 
17
echo "Grub installed on $BOOT_DEVICE on $GROOT"
 
18
 
 
19
exit $error
 
20