src/bin/proxmox-backup-client.rs: avoid doubled file extensions (.blob.blob) in index.json

This commit is contained in:
Dietmar Maurer 2019-08-07 10:23:08 +02:00
parent 4af0ee055a
commit 977eeb24f6

View File

@ -600,12 +600,12 @@ fn create_backup(
BackupType::CONFIG => {
println!("Upload config file '{}' to '{:?}' as {}", filename, repo, target);
let stats = client.upload_blob_from_file(&filename, &target, crypt_config.clone(), true).wait()?;
file_list.push((format!("{}.blob", target), stats));
file_list.push((target, stats));
}
BackupType::LOGFILE => { // fixme: remove - not needed anymore ?
println!("Upload log file '{}' to '{:?}' as {}", filename, repo, target);
let stats = client.upload_blob_from_file(&filename, &target, crypt_config.clone(), true).wait()?;
file_list.push((format!("{}.blob", target), stats));
file_list.push((target, stats));
}
BackupType::PXAR => {
println!("Upload directory '{}' to '{:?}' as {}", filename, repo, target);
@ -619,7 +619,7 @@ fn create_backup(
skip_lost_and_found,
crypt_config.clone(),
)?;
file_list.push((format!("{}.didx", target), stats));
file_list.push((target, stats));
}
BackupType::IMAGE => {
println!("Upload image '{}' to '{:?}' as {}", filename, repo, target);
@ -632,7 +632,7 @@ fn create_backup(
verbose,
crypt_config.clone(),
)?;
file_list.push((format!("{}.fidx", target), stats));
file_list.push((target, stats));
}
}
}