file-restore: support encrypted VM backups
Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
This commit is contained in:
committed by
Thomas Lamprecht
parent
9d8ab62769
commit
15998ed12a
@ -21,6 +21,7 @@ pub struct SnapRestoreDetails {
|
||||
pub repo: BackupRepository,
|
||||
pub snapshot: BackupDir,
|
||||
pub manifest: BackupManifest,
|
||||
pub keyfile: Option<String>,
|
||||
}
|
||||
|
||||
/// Return value of a BlockRestoreDriver.status() call, 'id' must be valid for .stop(id)
|
||||
|
@ -190,9 +190,14 @@ pub async fn start_vm(
|
||||
continue;
|
||||
}
|
||||
drives.push("-drive".to_owned());
|
||||
let keyfile = if let Some(ref keyfile) = details.keyfile {
|
||||
format!(",,keyfile={}", keyfile)
|
||||
} else {
|
||||
"".to_owned()
|
||||
};
|
||||
drives.push(format!(
|
||||
"file=pbs:repository={},,snapshot={},,archive={},read-only=on,if=none,id=drive{}",
|
||||
details.repo, details.snapshot, file, id
|
||||
"file=pbs:repository={},,snapshot={},,archive={}{},read-only=on,if=none,id=drive{}",
|
||||
details.repo, details.snapshot, file, keyfile, id
|
||||
));
|
||||
drives.push("-device".to_owned());
|
||||
// drive serial is used by VM to map .fidx files to /dev paths
|
||||
|
Reference in New Issue
Block a user