(refactor) Remove pobsync_home from global config

Drop the obsolete pobsync_home field from GlobalConfig and remove it from
runtime config generation, form saves, and configuration commands.

The runtime state root now comes exclusively from POBSYNC_HOME/settings,
which keeps the Django model focused on backup behavior instead of install
layout.
This commit is contained in:
2026-05-21 02:41:02 +02:00
parent bb62382e18
commit 2642f14e49
10 changed files with 14 additions and 24 deletions

View File

@@ -17,7 +17,6 @@ class ConfigRepositoryError(RuntimeError):
def _global_runtime_data(global_config: GlobalConfig) -> dict[str, Any]:
data = {
"backup_root": global_config.backup_root,
"pobsync_home": global_config.pobsync_home,
"ssh": {
"user": global_config.ssh_user,
"port": global_config.ssh_port,