proxmox-backup/src/bin/pbs-datastore.rs

46 lines
1.1 KiB
Rust
Raw Normal View History

extern crate apitest;
use std::collections::HashMap;
use apitest::api3;
use apitest::cli::command::*;
2018-12-10 12:40:10 +00:00
fn datastore_commands() -> CommandLineInterface {
let mut cmd_def = HashMap::new();
2018-12-10 12:40:10 +00:00
cmd_def.insert("list".to_owned(), CommandLineInterface::Simple(CliCommand {
info: api3::config::datastore::get(),
arg_param: vec![],
fixed_param: vec![],
}));
2018-12-10 12:40:10 +00:00
cmd_def.insert("create".to_owned(), CommandLineInterface::Simple(CliCommand {
info: api3::config::datastore::post(),
arg_param: vec!["name", "path"],
fixed_param: vec![],
}));
2018-12-10 12:40:10 +00:00
cmd_def.insert("remove".to_owned(), CommandLineInterface::Simple(CliCommand {
info: api3::config::datastore::delete(),
arg_param: vec!["name"],
fixed_param: vec![],
}));
2018-12-10 12:40:10 +00:00
CommandLineInterface::Nested(cmd_def)
}
fn main() {
let mut cmd_def = HashMap::new();
cmd_def.insert("datastore".to_owned(), datastore_commands());
2018-12-10 12:40:10 +00:00
if let Err(err) = run_cli_command(&CommandLineInterface::Nested(cmd_def)) {
eprintln!("Error: {}", err);
print_cli_usage();
std::process::exit(-1);
}
}