docs(arr-cleanup): improve runbook and fix api key paths

Rewrites findings.md with how-to section, cleaner summary tables,
and more detailed per-pass results. Fixes relative path for
sonarr/radarr API key files after runbook moved deeper in repo.
This commit is contained in:
Tuan-Dat Tran
2026-04-27 21:39:28 +02:00
parent 95715c7748
commit 5b44c46e10
3 changed files with 111 additions and 57 deletions

View File

@@ -32,7 +32,7 @@ SERIES_ROOT = "/media/series"
script_dir = os.path.dirname(os.path.abspath(__file__))
LOG_FILE = os.path.join(script_dir, "cleanup.log")
with open(os.path.join(script_dir, '..', 'sonarr.api.env')) as f:
with open(os.path.join(script_dir, '../../../..', 'sonarr.api.env')) as f:
SONARR_KEY = f.read().strip()