diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-04-13 10:33:51 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-04-13 10:33:51 -0300 |
commit | d99c33ac5bbee61c3f9f53eee8156fd57fa12553 (patch) | |
tree | 72a55b2f50680cd368b71fa51bb4a1e7522b2516 /share/hydractl/provision | |
parent | 3ce7b1337482c20ac6f81e3b8bca0fdae549655f (diff) | |
download | hydra-d99c33ac5bbee61c3f9f53eee8156fd57fa12553.tar.gz hydra-d99c33ac5bbee61c3f9f53eee8156fd57fa12553.tar.bz2 |
GRUB2 config format at provision
Diffstat (limited to 'share/hydractl/provision')
-rwxr-xr-x | share/hydractl/provision | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/share/hydractl/provision b/share/hydractl/provision index 290395c..0ab634f 100755 --- a/share/hydractl/provision +++ b/share/hydractl/provision @@ -193,16 +193,16 @@ if [ "$grub" == "y" ]; then hydra_safe_run chroot /tmp/debootstrap/ apt-get install grub-pc -y hydra_safe_run grub-install --root-directory=/tmp/debootstrap/boot --no-floppy "$device" mkdir -p /tmp/debootstrap/boot/grub/ - cat /tmp/debootstrap/boot/grub/menu.lst <<-EOF -title $hostname (hd0) -root (hd0,1) -kernel /vmlinuz-2.6.26-2-vserver-amd64 root=/dev/mapper/root ro quiet rootdelay=10 -initrd /initrd.img-2.6.26-2-vserver-amd64 - -title $hostname (hd0) (single) -root (hd0,1) -kernel /vmlinuz-2.6.26-2-vserver-amd64 root=/dev/mapper/root ro single rootdelay=10 -initrd /initrd.img-2.6.26-2-vserver-amd64 + cat /tmp/debootstrap/boot/grub/grub.cfg <<-EOF +set menu_color_normal=white/blue +set menu_color_highlight=yellow/red + +menuentry 'Standard: $hostname Debian Server' --class debian --class gnu-linux --class gnu --class os { + echo 'Debian Server $hostname...' + linux /vmlinuz-2.6.32-5-vserver-amd64 root=/dev/mapper/root ro + echo 'Loading initial ramdisk...' + initrd /initrd.img-2.6.32-5-vserver-amd64-server +} EOF fi |