From 865ea5db0ee3286f85a219836e25215e0110f8d4 Mon Sep 17 00:00:00 2001 From: Christian Lempa Date: Mon, 2 Sep 2024 09:36:18 +0200 Subject: [PATCH] fix boot command and other small improvements --- .../ubuntu-server-noble.pkr.hcl | 45 ++++++++++--------- 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/packer/proxmox/ubuntu-server-noble/ubuntu-server-noble.pkr.hcl b/packer/proxmox/ubuntu-server-noble/ubuntu-server-noble.pkr.hcl index b2c5e75..86fa28c 100644 --- a/packer/proxmox/ubuntu-server-noble/ubuntu-server-noble.pkr.hcl +++ b/packer/proxmox/ubuntu-server-noble/ubuntu-server-noble.pkr.hcl @@ -1,6 +1,6 @@ -# Ubuntu Server Focal +# Ubuntu Server Noble (24.04.x) # --- -# Packer Template to create an Ubuntu Server (Focal) on Proxmox +# Packer Template to create an Ubuntu Server (Noble 24.04.x) on Proxmox # Variable Definitions variable "proxmox_api_url" { @@ -75,32 +75,36 @@ source "proxmox-iso" "ubuntu-server-noble" { # PACKER Boot Commands boot_command = [ - "c", - "linux /casper/vmlinuz --- autoinstall ds=\"nocloud-net;seedfrom=http://{{.HTTPIP}}:{{.HTTPPort}}/\"", - "", - "initrd /casper/initrd", - "", - "boot",""] + "", + "e", + "", + "", + "autoinstall ds=nocloud-net\\;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ ---", + "" + ] - boot_wait = "10s" + boot = "c" + boot_wait = "10s" + communicator = "ssh" # PACKER Autoinstall Settings - http_directory = "http" + http_directory = "http" # (Optional) Bind IP Address and Port - # http_bind_address = "0.0.0.0" - # http_port_min = 8802 - # http_port_max = 8802 + # http_bind_address = "0.0.0.0" + # http_port_min = 8802 + # http_port_max = 8802 - ssh_username = "your-user-name" + ssh_username = "your-user-name" # (Option 1) Add your Password here - # ssh_password = "your-password" + # ssh_password = "your-password" # - or - # (Option 2) Add your Private SSH KEY file here - # ssh_private_key_file = "~/.ssh/id_rsa" + # ssh_private_key_file = "~/.ssh/id_rsa" # Raise the timeout, when installation takes longer - ssh_timeout = "20m" + ssh_timeout = "30m" + ssh_pty = true } # Build Definition to create the VM Template @@ -115,11 +119,12 @@ build { "while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo 'Waiting for cloud-init...'; sleep 1; done", "sudo rm /etc/ssh/ssh_host_*", "sudo truncate -s 0 /etc/machine-id", - "sudo apt-get -y autoremove --purge", - "sudo apt-get -y clean", - "sudo apt-get -y autoclean", + "sudo apt -y autoremove --purge", + "sudo apt -y clean", + "sudo apt -y autoclean", "sudo cloud-init clean", "sudo rm -f /etc/cloud/cloud.cfg.d/subiquity-disable-cloudinit-networking.cfg", + "sudo rm -f /etc/netplan/00-installer-config.yaml", "sudo sync" ] }