]> git.proxmox.com Git - pve-installer.git/commitdiff
assistant: prepare iso: s/direct/included to match current naming
authorAlexander Zeidler <a.zeidler@proxmox.com>
Tue, 23 Apr 2024 09:00:26 +0000 (11:00 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 23 Apr 2024 15:27:17 +0000 (17:27 +0200)
Signed-off-by: Alexander Zeidler <a.zeidler@proxmox.com>
proxmox-auto-install-assistant/src/main.rs

index ec04523211e3a0e1edaad05eba1b0670121ff6bf..0e36239dc40ebbb9070e03f52848d3bc46af77cb 100644 (file)
@@ -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() {