Skip to content

Commit

Permalink
remove user/password
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Lange committed Jul 5, 2016
1 parent 6ecfef1 commit ff2623b
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions conf/grub.cfg
Expand Up @@ -3,9 +3,6 @@ set default="Boot OS from first partition on first disk"
set timeout=20
set resolution=1024x768

set superusers="fai"
password fai install

if loadfont /boot/grub/ascii.pf2 ; then
insmod png
set gfxmode=640x480
Expand Down Expand Up @@ -33,40 +30,36 @@ if [ ${iso_path} ] ; then
fi


menuentry " +------------------------------------------------------+" --unrestricted {
menuentry " +------------------------------------------------------+" {
set gfxpayload=$resolution
}

menuentry " | Fully Automatic Installation |" --unrestricted {
menuentry " | Fully Automatic Installation |" {
set gfxpayload=$resolution

}
menuentry " | _VERSIONSTRING_ |" --unrestricted {
set gfxpayload=$resolution

}
menuentry " | (c) Thomas Lange lange@debian.org |" --unrestricted {
set gfxpayload=$resolution
}
menuentry " +------------------------------------------------------+" --unrestricted {
menuentry " | (c) Thomas Lange lange@debian.org |" {
set gfxpayload=$resolution
}

menuentry " Username/password to start the installation: fai/install " --unrestricted {
menuentry " +------------------------------------------------------+" {
set gfxpayload=$resolution
}

menuentry "" --unrestricted {
menuentry "" {
set gfxpayload=$resolution
}
menuentry "Client standalone installation - select installation type from menu " --users "fai" {
menuentry "Client standalone installation - select installation type from menu " {
set gfxpayload=$resolution
linux /boot/vmlinuz FAI_FLAGS="menu,verbose,createvt" FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD rd.neednet ip=dhcp quiet
initrd /boot/initrd.img
}


menuentry "FAI server installation - using external DHCP" --users "fai" {
menuentry "FAI server installation - using external DHCP" {
set gfxpayload=$resolution
linux /boot/vmlinuz FAI_FLAGS="verbose,createvt" FAI_ACTION=install hostname=faiserver FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD rd.neednet ip=dhcp quiet
initrd /boot/initrd.img
Expand All @@ -78,13 +71,13 @@ menuentry "FAI server installation - using a fixed IP" {
initrd /boot/initrd.img
}

menuentry "Rescue system, no installation" --unrestricted {
menuentry "Rescue system, no installation" {
set gfxpayload=$resolution
linux /boot/vmlinuz FAI_FLAGS="verbose,createvt" FAI_ACTION=sysinfo FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD quiet
initrd /boot/initrd.img
}

menuentry "Boot OS from first partition on first disk" --unrestricted {
menuentry "Boot OS from first partition on first disk" {
if [ -d (cd) ]; then
chainloader (hd0)+1
fi
Expand Down

0 comments on commit ff2623b

Please sign in to comment.