-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
whiptail interface, standalone mode...
Signed-off-by: Florent CARLI <[email protected]>
- Loading branch information
1 parent
9fdacf8
commit cba5998
Showing
6 changed files
with
112 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## grub2 configuration | ||
set default="SEAPATH installation - no raid, no kerberos, no debug tools" | ||
set default="SEAPATH installation - Cluster mode with RAID, English, no kerberos, no debug tools" | ||
set timeout=5 | ||
|
||
# make sure we can access partitions | ||
|
@@ -14,59 +14,26 @@ set color_highlight=red/black | |
set menu_color_normal=white/black | ||
set menu_color_highlight=black/yellow | ||
|
||
menuentry " +------------------------------------------------------+" { | ||
set timeout=20 | ||
} | ||
|
||
menuentry " | Fully Automatic Installation |" { | ||
set timeout=20 | ||
|
||
} | ||
menuentry " | _VERSIONSTRING_ |" --unrestricted { | ||
set timeout=20 | ||
|
||
} | ||
menuentry " | (c) Thomas Lange [email protected] |" { | ||
set timeout=20 | ||
} | ||
menuentry " +------------------------------------------------------+" { | ||
set timeout=20 | ||
} | ||
|
||
menuentry "" { | ||
set timeout=20 | ||
} | ||
|
||
menuentry "SEAPATH installation - select installation type from menu" { | ||
menuentry "SEAPATH installation - Cluster mode with RAID, English, no kerberos, no debug tools" { | ||
search --set=root --file /FAI-CD | ||
linux /boot/vmlinuz FAI_FLAGS="menu,verbose,sshd,createvt,reboot" FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD ipv6.disable=1 console=tty1 | ||
linux /boot/vmlinuz FAI_FLAGS="cluster,raid,verbose,sshd,createvt,reboot" FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD ipv6.disable=1 console=tty1 | ||
initrd /boot/initrd.img | ||
} | ||
menuentry "SEAPATH installation - no raid, no kerberos, no debug tools" { | ||
search --set=root --file /FAI-CD | ||
linux /boot/vmlinuz FAI_FLAGS="verbose,sshd,createvt,reboot" FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD ipv6.disable=1 console=tty1 | ||
initrd /boot/initrd.img | ||
} | ||
menuentry "SEAPATH installation - RAID, no kerberos, no debug tools" { | ||
search --set=root --file /FAI-CD | ||
linux /boot/vmlinuz FAI_FLAGS="raid,verbose,sshd,createvt,reboot" FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD ipv6.disable=1 console=tty1 | ||
initrd /boot/initrd.img | ||
} | ||
menuentry "SEAPATH installation - RAIDDEMO TTYS0, no kerberos, no debug tools" { | ||
search --set=root --file /FAI-CD | ||
linux /boot/vmlinuz FAI_FLAGS="raiddemo,verbose,sshd,createvt,reboot" FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD ipv6.disable=1 console=ttyS0 | ||
initrd /boot/initrd.img | ||
} | ||
menuentry "SEAPATH installation - no raid, KERBEROS, no debug tools" { | ||
|
||
## BEGIN CUSTOM MENU ITEMS | ||
|
||
menuentry "SEAPATH installation - french,raid,cluster" { | ||
search --set=root --file /FAI-CD | ||
linux /boot/vmlinuz FAI_FLAGS="kerberos,verbose,sshd,createvt,reboot" FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD ipv6.disable=1 console=tty1 | ||
linux /boot/vmlinuz FAI_FLAGS=french,raid,cluster,verbose,sshd,createvt,reboot FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD ipv6.disable=1 | ||
initrd /boot/initrd.img | ||
} | ||
menuentry "SEAPATH installation - no raid, no kerberos, DEBUG tools" { | ||
menuentry "SEAPATH installation - noflag" { | ||
search --set=root --file /FAI-CD | ||
linux /boot/vmlinuz FAI_FLAGS="dbg,verbose,sshd,createvt,reboot" FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD ipv6.disable=1 console=tty1 | ||
linux /boot/vmlinuz FAI_FLAGS=noflag,verbose,sshd,createvt,reboot FAI_ACTION=install FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD ipv6.disable=1 | ||
initrd /boot/initrd.img | ||
} | ||
## END CUSTOM MENU ITEMS | ||
|
||
menuentry "Boot OS from first partition on first disk" { | ||
if [ "$grub_platform" = "efi" ]; then | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# This packages are specific to Cluster Mode | ||
PACKAGES install-norec | ||
ceph | ||
ceph-base | ||
ceph-common | ||
ceph-mgr | ||
ceph-mon | ||
ceph-osd | ||
corosync | ||
crmsh | ||
libcephfs2 | ||
pacemaker | ||
python3-ceph-argparse | ||
python3-cephfs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters