From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 5B1BE20EC88 for ; Tue, 23 Apr 2024 11:00:42 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id A23F01E238; Tue, 23 Apr 2024 11:00:44 +0200 (CEST) From: Alexander Zeidler To: pve-devel@lists.proxmox.com Date: Tue, 23 Apr 2024 11:00:26 +0200 Message-Id: <20240423090026.43808-1-a.zeidler@proxmox.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.085 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy 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 installer] assistant: prepare iso: s/direct/included to match current naming 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: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" Signed-off-by: Alexander Zeidler --- proxmox-auto-install-assistant/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proxmox-auto-install-assistant/src/main.rs b/proxmox-auto-install-assistant/src/main.rs index 17f8e96..c14316c 100644 --- a/proxmox-auto-install-assistant/src/main.rs +++ b/proxmox-auto-install-assistant/src/main.rs @@ -282,13 +282,13 @@ fn prepare_iso(args: &CommandPrepareISO) -> Result<()> { if args.install_mode == AutoInstModes::Included { if args.answer_file.is_none() { - bail!("Missing path to answer file needed for 'direct' install mode."); + bail!("Missing path to answer file needed for 'included' install mode."); } if args.cert_fingerprint.is_some() { - bail!("No certificate fingerprint needed for direct install mode. Drop the parameter!"); + bail!("No certificate fingerprint needed for 'included' install mode. Drop the parameter!"); } if args.url.is_some() { - bail!("No URL needed for direct install mode. Drop the parameter!"); + bail!("No URL needed for 'included' install mode. Drop the parameter!"); } } else if args.install_mode == AutoInstModes::Partition { if args.cert_fingerprint.is_some() { -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel