backup-clinet: specify target file name

This commit is contained in:
Dietmar Maurer 2018-12-20 14:09:31 +01:00
parent c2d9b3914a
commit c34eb16651
1 changed files with 12 additions and 3 deletions

View File

@ -22,12 +22,20 @@ fn backup_file(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
let filename = required_string_param(&param, "filename");
let store = required_string_param(&param, "store");
let target = required_string_param(&param, "target");
let mut datastore = DataStore::open(store)?;
println!("Backup file '{}' to '{}'", filename, store);
let target = "test1.idx";
let mut target = std::path::PathBuf::from(target);
if let Some(ext) = target.extension() {
if ext != "iidx" {
bail!("got wrong file extension - expected '.iidx'");
}
} else {
target.set_extension("iidx");
}
{
let file = std::fs::File::open(filename)?;
@ -35,7 +43,7 @@ fn backup_file(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
if stat.st_size <= 0 { bail!("got strange file size '{}'", stat.st_size); }
let size = stat.st_size as usize;
let mut index = datastore.create_image_writer(target, size)?;
let mut index = datastore.create_image_writer(&target, size)?;
tools::file_chunker(file, 64*1024, |pos, chunk| {
index.add_chunk(pos, chunk)?;
@ -62,8 +70,9 @@ fn main() {
ObjectSchema::new("Create backup from file.")
.required("filename", StringSchema::new("Source file name."))
.required("store", StringSchema::new("Datastore name."))
.required("target", StringSchema::new("Target name."))
))
.arg_param(vec!["filename"])
.arg_param(vec!["filename", "target"])
.completion_cb("store", proxmox_backup::config::datastore::complete_datastore_name);