From: Alexander Zeidler Date: Tue, 23 Apr 2024 09:00:26 +0000 (+0200) Subject: assistant: prepare iso: s/direct/included to match current naming X-Git-Url: https://git.proxmox.com/?p=pve-installer.git;a=commitdiff_plain;h=c08668b5d6249afc925f4a062aa023be1a71850c assistant: prepare iso: s/direct/included to match current naming Signed-off-by: Alexander Zeidler --- diff --git a/proxmox-auto-install-assistant/src/main.rs b/proxmox-auto-install-assistant/src/main.rs index ec04523..0e36239 100644 --- a/proxmox-auto-install-assistant/src/main.rs +++ b/proxmox-auto-install-assistant/src/main.rs @@ -283,13 +283,13 @@ fn prepare_iso(args: &CommandPrepareISO) -> Result<()> { if args.fetch_from == FetchAnswerFrom::Iso { 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.fetch_from == FetchAnswerFrom::Partition { if args.cert_fingerprint.is_some() {