tape support: add drive configuration

This commit is contained in:
Dietmar Maurer
2020-12-04 15:42:32 +01:00
parent ff50c07ebf
commit a076571470
3 changed files with 150 additions and 0 deletions

View File

@ -20,6 +20,10 @@ pub use userid::Userid;
pub use userid::Authid;
pub use userid::{PROXMOX_TOKEN_ID_SCHEMA, PROXMOX_TOKEN_NAME_SCHEMA, PROXMOX_GROUP_ID_SCHEMA};
mod tape;
pub use tape::*;
// File names: may not contain slashes, may not start with "."
pub const FILENAME_FORMAT: ApiStringFormat = ApiStringFormat::VerifyFn(|name| {
if name.starts_with('.') {