From 2de4321b014e8f95b7d7450f78048ffaa7a1a703 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Sun, 3 May 2026 23:37:30 +0200 Subject: Add proxmox install support Using debian live ISO instead of proxmox live ISO, since using the proxmox ISO didn't allow automating the setup after connecting to the network. --- roles/bootstrap/templates/refind_proxmox.conf.j2 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 roles/bootstrap/templates/refind_proxmox.conf.j2 (limited to 'roles/bootstrap/templates') diff --git a/roles/bootstrap/templates/refind_proxmox.conf.j2 b/roles/bootstrap/templates/refind_proxmox.conf.j2 new file mode 100644 index 0000000..e38c223 --- /dev/null +++ b/roles/bootstrap/templates/refind_proxmox.conf.j2 @@ -0,0 +1,19 @@ +timeout 5 +textonly true +scan_all_linux_kernels false +dont_scan_files vmlinuz,vmlinuz-linux,initrd.img,initramfs-linux.img +hideui hints + +menuentry "Proxmox VE" { + volume "boot" + loader \EFI\proxmox\vmlinuz + initrd \EFI\proxmox\initrd.img + options "root=PARTLABEL={{ partition_root.name }} rw rootwait console=tty1{% if bootstrap_mac %} {{ bootstrap_mac_boot_args }}{% endif %}" +} + +menuentry "Proxmox VE (terminal)" { + volume "boot" + loader \EFI\proxmox\vmlinuz + initrd \EFI\proxmox\initrd.img + options "root=PARTLABEL={{ partition_root.name }} rw rootwait console=tty1 systemd.unit=multi-user.target{% if bootstrap_mac %} {{ bootstrap_mac_boot_args }}{% endif %}" +} -- cgit v1.2.3