I have been following instructions as per https://pve.proxmox.com/wiki/Automated_Installation
Here is my config:
I have an firstboot script called firstboot.sh and I set it up my ISO with the following command:
Yet when I try to load the installer...

I've wasted days trying to debug this. From my various internet searches it seems that I'm the only person in the world this has ever happened to!
If I could make any sense of the layout of the installer filesystem I could manually add in my script somewhere. The post install script sets up LACP bonding. The current networking setup doesn't support LACP fallback mode so I need to do this as an offline install then set up the network before reboot so that I can complete the configuration with some Ansible playbooks I have .
Side grumble: Why is ANY Debian based automation so difficult / badly documented?
Here is my config:
Code:
[global]
keyboard = "en-gb"
country = "gb"
fqdn = "pveauto.testinstall"
mailto = "adm@blah"
timezone = "Europe/London"
root-password-hashed = "$6blahblahblah"
[network]
source = "from-dhcp"
[disk-setup]
filesystem = "ext4"
disk-list = ["sda"]
[first-boot]
source = "from-iso"
ordering = "before-network"
I have an firstboot script called firstboot.sh and I set it up my ISO with the following command:
Code:
proxmox-auto-install-assistant prepare-iso --fetch-from iso --on-first-boot firstboot.sh --answer-file config.toml proxmox-ve_9.1-1.iso
Checking provided answer file...
The answer file was parsed successfully, no errors found!
Yet when I try to load the installer...

I've wasted days trying to debug this. From my various internet searches it seems that I'm the only person in the world this has ever happened to!
If I could make any sense of the layout of the installer filesystem I could manually add in my script somewhere. The post install script sets up LACP bonding. The current networking setup doesn't support LACP fallback mode so I need to do this as an offline install then set up the network before reboot so that I can complete the configuration with some Ansible playbooks I have .
Side grumble: Why is ANY Debian based automation so difficult / badly documented?