[pve-devel] [PATCH installer] assistant: prepare iso: s/direct/included to match current naming
Alexander Zeidler
a.zeidler at proxmox.com
Tue Apr 23 11:00:26 CEST 2024
Signed-off-by: Alexander Zeidler <a.zeidler at proxmox.com>
---
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
More information about the pve-devel
mailing list