diff --git a/src/bin/proxmox_file_restore/qemu_helper.rs b/src/bin/proxmox_file_restore/qemu_helper.rs index 46fa011b..e50a8bbf 100644 --- a/src/bin/proxmox_file_restore/qemu_helper.rs +++ b/src/bin/proxmox_file_restore/qemu_helper.rs @@ -51,7 +51,7 @@ fn validate_img_existance() -> Result<(), Error> { let kernel = PathBuf::from(buildcfg::PROXMOX_BACKUP_KERNEL_FN); let initramfs = PathBuf::from(buildcfg::PROXMOX_BACKUP_INITRAMFS_FN); if !kernel.exists() || !initramfs.exists() { - bail!("cannot run file-restore VM: package 'proxmox-file-restore' is not (correctly) installed"); + bail!("cannot run file-restore VM: package 'proxmox-backup-restore-image' is not (correctly) installed"); } Ok(()) }