- Display the restic engine as "Restic" to match BorgBackup/Kopia. The lowercase name lived in scripts/backup/engines/restic.json (drives the location-row engine pill, per-location engine select, and engine modal), the hardcoded per-location dropdown options, the engine-list fallback, and the config-option metadata. All set to "Restic". - In each location's Engine dropdown, float the system-default engine (CFG_BACKUP_ENGINE) to the top and tag it "(default)", mirroring the retention-preset pattern. Repo config metadata is the install template (add-only reconciliation), so the live /docker/configs/backup/backup_engine label was updated in place too for the global Configuration-tab dropdown on this install. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
25 lines
1.0 KiB
JSON
25 lines
1.0 KiB
JSON
{
|
|
"id": "restic",
|
|
"name": "Restic",
|
|
"tagline": "Modern encrypted backup with native deduplication.",
|
|
"logo": "/icons/config/backup.svg",
|
|
"supported_types": ["local", "sftp", "rest", "s3", "b2", "gs", "azure", "rclone"],
|
|
"properties": [
|
|
{"label": "Encryption", "value": "AES-256-CTR + Poly1305-AES authentication"},
|
|
{"label": "Key derivation", "value": "scrypt"},
|
|
{"label": "Deduplication", "value": "Content-defined chunking (CDC)"},
|
|
{"label": "Compression", "value": "zstd (auto)"},
|
|
{"label": "Integrity", "value": "Cryptographic on every read"},
|
|
{"label": "License", "value": "BSD-2-Clause"}
|
|
],
|
|
"features": [
|
|
"Snapshots are immutable and content-addressed.",
|
|
"Deduplicates across hosts and apps without configuration.",
|
|
"Same binary speaks SFTP, REST, S3, B2, GCS, Azure, rclone.",
|
|
"Built-in repository verification via `restic check`.",
|
|
"Single static Go binary — no runtime dependencies."
|
|
],
|
|
"docs_url": "https://restic.readthedocs.io/",
|
|
"version_command": "restic version"
|
|
}
|