From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id ED4A991929 for ; Thu, 29 Sep 2022 09:52:59 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id D01E31553 for ; Thu, 29 Sep 2022 09:52:29 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Thu, 29 Sep 2022 09:52:28 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 1365A4463F for ; Thu, 29 Sep 2022 09:52:28 +0200 (CEST) From: Fiona Ebner To: pve-devel@lists.proxmox.com Date: Thu, 29 Sep 2022 09:52:22 +0200 Message-Id: <20220929075224.27891-1-f.ebner@proxmox.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.032 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH docs 1/3] cloud init: use 'order' variant for 'boot' property X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Sep 2022 07:53:00 -0000 instead of the legacy 'boot: c'+bootdisk combination. Signed-off-by: Fiona Ebner --- qm-cloud-init.adoc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/qm-cloud-init.adoc b/qm-cloud-init.adoc index 8363f10..25cd700 100644 --- a/qm-cloud-init.adoc +++ b/qm-cloud-init.adoc @@ -86,13 +86,12 @@ the Cloud-Init data to the VM. qm set 9000 --ide2 local-lvm:cloudinit ---- -To be able to boot directly from the Cloud-Init image, set the -`bootdisk` parameter to `scsi0`, and restrict BIOS to boot from disk -only. This will speed up booting, because VM BIOS skips the testing for -a bootable CD-ROM. +To be able to boot directly from the Cloud-Init image, set the `boot` parameter +to `order=scsi0` to restrict BIOS to boot from this disk only. This will speed +up booting, because VM BIOS skips the testing for a bootable CD-ROM. ---- -qm set 9000 --boot c --bootdisk scsi0 +qm set 9000 --boot order=scsi0 ---- For many Cloud-Init images, it is required to configure a serial console and use -- 2.30.2