Add support for FAI_FLAGS

This commit is contained in:
rockstable 2022-12-10 21:17:36 +01:00
parent 29568f5a05
commit 84f64b8eb3
3 changed files with 16 additions and 1 deletions

View File

@ -33,6 +33,12 @@ fai_squashfs_path: "{{ fai_dir_download + '/' + fai_squashfs_file }}"
fai_loguser:
fai_menu_default: 'HW4F Desktop Jammy'
fai_nfsroot_force_rebuild: false
#fai_flags: [verbose,sshd,createvt,menu,debug,reboot]
fai_flags:
- verbose
- sshd
- createvt
- menu
fai_hw4f_password_salt: "toXu6kiez1haetan"
fai_hw4f_rootpw_fai: "fai"

View File

@ -68,7 +68,14 @@ exit
:fai
kernel ${boot-root}/{{ fai_live_vmlinuz }}
initrd ${boot-root}/{{ fai_live_initrd }} || goto reload_after_fail
imgargs {{ fai_live_vmlinuz|basename }} ip=dhcp root=live:{{ http_mirror_fai_squashfs_url }} FAI_FLAGS=verbose,sshd,createv,menu FAI_CONFIG_SRC={{ http_mirror_fai_profiles_url }} FAI_ACTION=install net.ifnames=0
imgargs {{ fai_live_vmlinuz | basename }} ip=dhcp root=live:{{ http_mirror_fai_squashfs_url }} FAI_FLAGS={{ fai_flags | join(',') }} FAI_CONFIG_SRC={{ http_mirror_fai_profiles_url }} FAI_ACTION=install net.ifnames=0
boot || goto reload_after_fail
goto start
:fai+reboot
kernel ${boot-root}/{{ fai_live_vmlinuz }}
initrd ${boot-root}/{{ fai_live_initrd }} || goto reload_after_fail
imgargs {{ fai_live_vmlinuz | basename }} ip=dhcp root=live:{{ http_mirror_fai_squashfs_url }} FAI_FLAGS={{{ fai_flags | join(',') }},reboot FAI_CONFIG_SRC={{ http_mirror_fai_profiles_url }} FAI_ACTION=install net.ifnames=0
boot || goto reload_after_fail
goto start

View File

@ -20,6 +20,8 @@ USERPW='{{ fai_hw4f_profile_password
SUPRESS_GNOME_INITIAL_SCREEN=1
### ALREADY SET IN IPXE MENU ON KERNEL CMDLINE
#FAI_FLAGS="verbose sshd createvt menu "
FAI_ALLOW_UNSIGNED=0
APTPROXY=http://{{ server_name }}:3142