mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-08-08 11:04:26 +00:00
bin: manager: add (un)mount command
We can't just directly delegate these commands to the API endpoints since both mounting and unmounting are done in a worker, and that one would be killed when the parent ends. In this case that would be the CLI process, which basically ends right after spwaning the worker. Signed-off-by: Hannes Laimer <h.laimer@proxmox.com>
This commit is contained in:
parent
76609915d6
commit
919925519a
@ -62,6 +62,20 @@ pub fn complete_datastore_name(_arg: &str, _param: &HashMap<String, String>) ->
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn complete_removable_datastore_name(
|
||||||
|
_arg: &str,
|
||||||
|
_param: &HashMap<String, String>,
|
||||||
|
) -> Vec<String> {
|
||||||
|
match config() {
|
||||||
|
Ok((data, _digest)) => data
|
||||||
|
.sections
|
||||||
|
.into_iter()
|
||||||
|
.filter_map(|(name, (_, c))| c.get("backing-device").map(|_| name))
|
||||||
|
.collect(),
|
||||||
|
Err(_) => Vec::new(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn complete_acl_path(_arg: &str, _param: &HashMap<String, String>) -> Vec<String> {
|
pub fn complete_acl_path(_arg: &str, _param: &HashMap<String, String>) -> Vec<String> {
|
||||||
let mut list = vec![
|
let mut list = vec![
|
||||||
String::from("/"),
|
String::from("/"),
|
||||||
|
@ -42,6 +42,34 @@ fn list_datastores(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Valu
|
|||||||
Ok(Value::Null)
|
Ok(Value::Null)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[api(
|
||||||
|
protected: true,
|
||||||
|
input: {
|
||||||
|
properties: {
|
||||||
|
store: {
|
||||||
|
schema: DATASTORE_SCHEMA,
|
||||||
|
},
|
||||||
|
digest: {
|
||||||
|
optional: true,
|
||||||
|
schema: PROXMOX_CONFIG_DIGEST_SCHEMA,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)]
|
||||||
|
/// Mount a removable datastore.
|
||||||
|
async fn mount_datastore(mut param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<(), Error> {
|
||||||
|
param["node"] = "localhost".into();
|
||||||
|
|
||||||
|
let info = &api2::admin::datastore::API_METHOD_MOUNT;
|
||||||
|
let result = match info.handler {
|
||||||
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
||||||
|
_ => unreachable!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
crate::wait_for_local_worker(result.as_str().unwrap()).await?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
#[api(
|
#[api(
|
||||||
input: {
|
input: {
|
||||||
properties: {
|
properties: {
|
||||||
@ -101,6 +129,34 @@ async fn create_datastore(mut param: Value) -> Result<Value, Error> {
|
|||||||
Ok(Value::Null)
|
Ok(Value::Null)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[api(
|
||||||
|
protected: true,
|
||||||
|
input: {
|
||||||
|
properties: {
|
||||||
|
store: {
|
||||||
|
schema: DATASTORE_SCHEMA,
|
||||||
|
},
|
||||||
|
digest: {
|
||||||
|
optional: true,
|
||||||
|
schema: PROXMOX_CONFIG_DIGEST_SCHEMA,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)]
|
||||||
|
/// Unmount a removable datastore.
|
||||||
|
async fn unmount_datastore(mut param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<(), Error> {
|
||||||
|
param["node"] = "localhost".into();
|
||||||
|
|
||||||
|
let info = &api2::admin::datastore::API_METHOD_UNMOUNT;
|
||||||
|
let result = match info.handler {
|
||||||
|
ApiHandler::Async(handler) => (handler)(param, info, rpcenv).await?,
|
||||||
|
_ => unreachable!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
crate::wait_for_local_worker(result.as_str().unwrap()).await?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
#[api(
|
#[api(
|
||||||
protected: true,
|
protected: true,
|
||||||
input: {
|
input: {
|
||||||
@ -191,6 +247,15 @@ async fn update_datastore(name: String, mut param: Value) -> Result<(), Error> {
|
|||||||
pub fn datastore_commands() -> CommandLineInterface {
|
pub fn datastore_commands() -> CommandLineInterface {
|
||||||
let cmd_def = CliCommandMap::new()
|
let cmd_def = CliCommandMap::new()
|
||||||
.insert("list", CliCommand::new(&API_METHOD_LIST_DATASTORES))
|
.insert("list", CliCommand::new(&API_METHOD_LIST_DATASTORES))
|
||||||
|
.insert(
|
||||||
|
"mount",
|
||||||
|
CliCommand::new(&API_METHOD_MOUNT_DATASTORE)
|
||||||
|
.arg_param(&["store"])
|
||||||
|
.completion_cb(
|
||||||
|
"store",
|
||||||
|
pbs_config::datastore::complete_removable_datastore_name,
|
||||||
|
),
|
||||||
|
)
|
||||||
.insert(
|
.insert(
|
||||||
"show",
|
"show",
|
||||||
CliCommand::new(&API_METHOD_SHOW_DATASTORE)
|
CliCommand::new(&API_METHOD_SHOW_DATASTORE)
|
||||||
@ -201,6 +266,15 @@ pub fn datastore_commands() -> CommandLineInterface {
|
|||||||
"create",
|
"create",
|
||||||
CliCommand::new(&API_METHOD_CREATE_DATASTORE).arg_param(&["name", "path"]),
|
CliCommand::new(&API_METHOD_CREATE_DATASTORE).arg_param(&["name", "path"]),
|
||||||
)
|
)
|
||||||
|
.insert(
|
||||||
|
"unmount",
|
||||||
|
CliCommand::new(&API_METHOD_UNMOUNT_DATASTORE)
|
||||||
|
.arg_param(&["store"])
|
||||||
|
.completion_cb(
|
||||||
|
"store",
|
||||||
|
pbs_config::datastore::complete_removable_datastore_name,
|
||||||
|
),
|
||||||
|
)
|
||||||
.insert(
|
.insert(
|
||||||
"update",
|
"update",
|
||||||
CliCommand::new(&API_METHOD_UPDATE_DATASTORE)
|
CliCommand::new(&API_METHOD_UPDATE_DATASTORE)
|
||||||
|
Loading…
Reference in New Issue
Block a user