(bugfix) Enable rsync progress output for live real runs

Default queued and management-command backups to verbose rsync output so live
run views show progress for long-running real backups, matching dry-run
visibility.

Add a quiet-rsync escape hatch for operators who intentionally want less noisy
real-run logs.
This commit is contained in:
2026-05-28 21:42:40 +02:00
parent 41ceab5a40
commit 29f455a153
7 changed files with 62 additions and 8 deletions

View File

@@ -27,7 +27,7 @@ def queue_backup_run(
host: HostConfig,
run_type: str = BackupRun.RunType.MANUAL,
dry_run: bool = False,
verbose_output: bool = False,
verbose_output: bool = True,
prune: bool = False,
prune_max_delete: int = 10,
prune_protect_bases: bool = False,