diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-05-03 23:37:30 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-05-03 23:37:30 +0200 |
| commit | 2de4321b014e8f95b7d7450f78048ffaa7a1a703 (patch) | |
| tree | 73420ef7a61a6bd7171b88b93f79433b626dc274 /roles/bootstrap/templates/refind_proxmox.conf.j2 | |
| parent | 59dc46968fff0c0459ff117b54034c60c491b56f (diff) | |
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.
Diffstat (limited to 'roles/bootstrap/templates/refind_proxmox.conf.j2')
| -rw-r--r-- | roles/bootstrap/templates/refind_proxmox.conf.j2 | 19 |
1 files changed, 19 insertions, 0 deletions
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 %}" +} |
