mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-06-14 13:25:19 +00:00
client: reflow strings over the column limit
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
c7a29011fa
commit
d8881be658
@ -628,8 +628,10 @@ fn spawn_catalog_upload(
|
|||||||
properties: {
|
properties: {
|
||||||
backupspec: {
|
backupspec: {
|
||||||
type: Array,
|
type: Array,
|
||||||
description: "List of backup source specifications ([<label.ext>:<path>] ...), the \
|
description:
|
||||||
specifications 'label' must contain alphanumerics, hyphens and underscores only.",
|
"List of backup source specifications ([<label.ext>:<path>] ...), the \
|
||||||
|
specifications 'label' must contain alphanumerics, hyphens and underscores \
|
||||||
|
only.",
|
||||||
items: {
|
items: {
|
||||||
schema: BACKUP_SOURCE_SCHEMA,
|
schema: BACKUP_SOURCE_SCHEMA,
|
||||||
}
|
}
|
||||||
@ -639,7 +641,9 @@ fn spawn_catalog_upload(
|
|||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
"include-dev": {
|
"include-dev": {
|
||||||
description: "Include mountpoints with same st_dev number (see ``man fstat``) as specified files.",
|
description:
|
||||||
|
"Include mountpoints with same st_dev number (see ``man fstat``) as specified \
|
||||||
|
files.",
|
||||||
optional: true,
|
optional: true,
|
||||||
items: {
|
items: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -729,7 +733,9 @@ fn spawn_catalog_upload(
|
|||||||
},
|
},
|
||||||
"skip-e2big-xattr": {
|
"skip-e2big-xattr": {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
description: "Ignore the E2BIG error when retrieving xattrs. This includes the file, but discards the metadata.",
|
description:
|
||||||
|
"Ignore the E2BIG error when retrieving xattrs. This includes the file, but \
|
||||||
|
discards the metadata.",
|
||||||
optional: true,
|
optional: true,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
@ -1566,7 +1572,10 @@ async fn restore(
|
|||||||
let (manifest, backup_index_data) = client.download_manifest().await?;
|
let (manifest, backup_index_data) = client.download_manifest().await?;
|
||||||
|
|
||||||
if archive_name == *ENCRYPTED_KEY_BLOB_NAME && crypt_config.is_none() {
|
if archive_name == *ENCRYPTED_KEY_BLOB_NAME && crypt_config.is_none() {
|
||||||
log::info!("Restoring encrypted key blob without original key - skipping manifest fingerprint check!")
|
log::info!(
|
||||||
|
"Restoring encrypted key blob without original key - skipping manifest fingerprint \
|
||||||
|
check!"
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
if manifest.signature.is_some() {
|
if manifest.signature.is_some() {
|
||||||
if let Some(key) = &crypto.enc_key {
|
if let Some(key) = &crypto.enc_key {
|
||||||
|
Loading…
Reference in New Issue
Block a user