# ━━━━━ MEDIA — Manual ━━━━━ Config reference, procedures, operational workflows. For overview see README-Media.md. For per-script detail see script headers. --- ## ━━━ PERMISSIONS MODEL ━━━ ``` Directories: 755 nobody:users Owner (nobody) — rwx enter, list, create files Group (users) — r-x enter and list Others — r-x Samba guests can browse No world-write — prevents accidental deletion by unauthenticated access Files: 664 nobody:users Owner (nobody) — rw read + write Group (users) — rw arrs can import, rename, delete Others — r Samba guests can read No execute bit — media files are never executable ``` **Two separate passes — not a single recursive chmod.** Directories need the execute bit to enter. Files must never have the execute bit. A single `chmod -R 664` would break directory entry. The script runs `find -type d` and `find -type f` separately. **If this script corrects many files on every run**, a container has wrong PUID/PGID. Correct values on unRAID: `PUID=99 (nobody)` `PGID=100 (users)`. Add to each container's environment in its Docker template. Common culprits: SABnzbd, qBittorrent, slskd. Once fixed, this script corrects 0 files per run — it becomes a pure daily failsafe. --- ## ━━━ ARR CLEANUP — FILE CLASSIFICATION ━━━ Every file found on disk during an arr cleanup run falls into exactly one category: ``` TRACKED → arr API returned this exact path → leave it alone PROTECTED → matches ARR_PROTECTED_PATTERNS → never delete ORPHAN → media extension, not tracked, old enough → delete JUNK → not a media extension, not protected → delete (any age) RECENT → not tracked, under ARR_ORPHAN_AGE days → skip (may be mid-import) ``` **Why protected patterns are critical:** arrs generate artwork (`*.jpg`), metadata (`*.nfo`), and subtitles/lyrics that do NOT appear in the tracked file API response. Without protection, these would be classified as orphans and deleted — removing cover art from every album, every movie poster, every TV show thumbnail. Requires a full rescan to recover. Never remove artwork extensions from protected patterns. --- ## ━━━ ARR CLEANUP — SAFETY LAYERS ━━━ All 7 layers must pass before any file is touched. There is no way to push through a failed safety check without the explicit override flag. ``` 1. Container running + healthy — a stopped container has an empty API 2. API reachable — no API = no tracked file list = everything looks orphaned 3. API version matches — major version must match tested version in master.conf 4. Item count > 0 — no artists/series/movies = something is wrong with DB 5. Tracked file count > 0 — empty response = everything would be deleted 6. Tracked count >= MIN_TRACKED_PCT — dramatic drop from last run = abort and alert 7. Deletion size < MAX_DELETE_GB — last line of defense against misconfigured root path ``` Layer 7 is the catastrophic failure prevention. A misconfigured root path — pointing cleanup at the wrong directory — means the API returns zero tracked files for a root that actually contains thousands. Everything walks as an orphan. Everything gets deleted. `LIDARR/SONARR/RADARR_MAX_DELETE_GB` requires `--i-know-what-im-doing` to proceed past it. --- ## ━━━ CONFIGURATION — master.conf ━━━ ### Permissions ```bash PERMISSIONS_DIR_MODE="755" PERMISSIONS_FILE_MODE="664" PERMISSIONS_OWNER="nobody:users" ``` --- ### Media Cleaner — File Patterns ```bash ANIME_FILE_PATTERNS=( "*.sfv" # checksum verification — useless after download verified "*.md5" "*.sha1" # other checksum formats "*.nfo" # scene info file — not library metadata "*.url" "*.lnk" # website shortcuts "*.rar" "*.zip" # source archives kept by some clients after extraction "*.info" # tool output files "*.torrent" # torrent descriptor left by some clients "*.sample*" # scene preview clip "*.proof*" # screenshot proving encode quality "*sync-conflict*" # Syncthing conflict copies "*.scr" "*.exe" # executables — should never be in a media folder "*.srr" # scene recovery record "*.log" # tool/client logs "*.json" # metadata or tool output ) MEDIA_FILE_PATTERNS=( "${ANIME_FILE_PATTERNS[@]}" # all anime patterns plus: "*.iso" # disc images after ripping "*.lrc" # lyric files in media folders ) ``` > **DO NOT add patterns that match media you want to keep:** > `*.mkv *.mp4 *.avi *.m4v` — video files > `*.flac *.mp3 *.m4a` — audio files > `*.srt *.sub *.ass` — subtitle files (Bazarr managed) > `*.jpg *.png` — artwork > Always use `--dry-run` when adding new patterns. --- ### Lidarr Cleanup Thresholds ```bash LIDARR_ORPHAN_AGE=7 # days — files newer than this are RECENT (mid-import window) LIDARR_MIN_TRACKED_PCT=80 # abort if API returns < 80% of last known count LIDARR_MAX_DELETE_GB=50 # require --i-know-what-im-doing above this LIDARR_IMPORT_SCAN_TIMEOUT=600 # seconds to wait for pre-flight import scan LIDARR_VERSION_MAJOR=3 # expected Lidarr major version (API safety check) LIDARR_EXTENSIONS=("flac" "mp3" "m4a" "wav" "aac" "ogg" "opus" "wma") LIDARR_PROTECTED_PATTERNS=("*.jpg" "*.jpeg" "*.png" "*.nfo" "*.lrc") LIDARR_TRACKED_COUNT_FILE=/boot/config/lidarr_tracked_count # persistent baseline ARR_CLEANUP_STATS=/boot/config/arr_cleanup_stats.db # read by coffee report ``` --- ### Sonarr Cleanup Thresholds ```bash SONARR_ORPHAN_AGE=7 SONARR_MAX_DELETE_GB=50 SONARR_IMPORT_SCAN_TIMEOUT=600 SONARR_VERSION_MAJOR=4 SONARR_EXTENSIONS=("mkv" "mp4" "avi" "m4v" "ts" "wmv" "mov") SONARR_PROTECTED_PATTERNS=("*.jpg" "*.jpeg" "*.png" "*.nfo" "*.srt" "*.sub" "*.ass" "*.ssa") ``` Note: `*.ts` IS in extensions — transport stream is used for Live TV recordings tracked by Sonarr. Orphaned `.ts` recordings should be cleaned like any other orphaned episode. --- ### Radarr Cleanup Thresholds ```bash RADARR_ORPHAN_AGE=7 RADARR_MAX_DELETE_GB=50 RADARR_IMPORT_SCAN_TIMEOUT=600 RADARR_VERSION_MAJOR=6 RADARR_EXTENSIONS=("mkv" "mp4" "avi" "m4v" "wmv" "mov") RADARR_PROTECTED_PATTERNS=("*.jpg" "*.jpeg" "*.png" "*.nfo" "*.srt" "*.sub" "*.ass" "*.ssa") ``` --- ### Arr Sync ```bash ARR_SYNC_ENABLED=true ARR_SYNC_BLOCKLIST=/boot/config/arr_sync_blocklist.tsv # tombstone file ARR_SYNC_CONNECT_TIMEOUT=10 # SSH connect timeout in seconds ARR_SYNC_API_TIMEOUT=60 # curl API call timeout in seconds DOCKER_APPDATA_BASE=/mnt/user/appdata ARR_SYNC_LIDARR_PORT=8686 ARR_SYNC_SONARR_PORT=8989 ARR_SYNC_RADARR_PORT=7878 ``` --- ### Arr Recovery ```bash ARR_IMPORT_RECOVERY_AGE=6 # hours — items newer than this are skipped SONARR_VERSION_MAJOR=4 RADARR_VERSION_MAJOR=6 LIDARR_VERSION_MAJOR=3 ARR_RECOVERY_STATS=/boot/config/arr_recovery_stats.db # read by coffee report ``` --- ### TMDb / TVDB Removed ```bash RADARR_DROPPED_ADD_EXCLUSION=true # add removed movies to Radarr import exclusion SONARR_DROPPED_ADD_EXCLUSION=true # add removed series to Sonarr import exclusion ``` --- ### Lidarr Missing Art ```bash FANART_API_KEY="your-fanart-tv-api-key" LASTFM_API_KEY="your-lastfm-api-key" LIDARR_ART_MIN_SIZE=5000 # minimum valid download size in bytes LIDARR_ART_MAX_PARALLEL=4 # concurrent background download jobs LIDARR_ART_RETRIES=2 # download retry attempts per image LIDARR_ART_SLEEP_BETWEEN=1 # seconds between fanart.tv API calls (rate limit) ``` --- ### Orchestrator Job Order ```bash MEDIA_MAINTENANCE_JOBS=( "Media/media_shares_permissions.sh" # 1. permissions — always first "Media/media_cleaner.sh anime" # 2. junk removal — before orphan scan "Media/media_cleaner.sh media" # 3. "Media/lidarr_cleanup.sh" # 4. arr cleanup — after permissions + clean "Media/sonarr_cleanup.sh" # 5. "Media/radarr_cleanup.sh" # 6. ) ``` --- ## ━━━ CONFIGURATION — master_host*.conf ━━━ ### master_host1.conf ```bash # Shares this server applies permissions to HOST1_MEDIA_PERMISSION_SHARES=( "/mnt/user/Movies" "/mnt/user/Tv_Shows" "/mnt/user/Music" "/mnt/user/Kids_Movies" "/mnt/user/Kids_Tv_Shows" "/mnt/user/Sports" "/mnt/user/stand-up_comedy" ) # Folders cleaned by each profile HOST1_ANIME_CLEAN_FOLDERS=( "/mnt/user/Anime_Movies" "/mnt/user/Anime_Movies-Old" "/mnt/user/Anime_Shows" "/mnt/user/Anime_Shows-Old" ) HOST1_MEDIA_CLEAN_FOLDERS=( "/mnt/user/Kids_Movies" "/mnt/user/Kids_Tv_Shows" "/mnt/user/Movies" "/mnt/user/Music" "/mnt/user/Sports" "/mnt/user/stand-up_comedy" "/mnt/user/Tv_Shows" ) # Arr connection details — must match arr settings exactly HOST1_LIDARR_URL="http://192.168.50.2:8686" HOST1_LIDARR_API_KEY="..." HOST1_LIDARR_MUSIC_ROOT="/mnt/user/Music" HOST1_LIDARR_PATH_MAP="" # container→host path translation if needed HOST1_SONARR_URL="http://192.168.50.2:8989" HOST1_SONARR_API_KEY="..." HOST1_SONARR_TV_ROOT="/mnt/user/Tv_Shows" HOST1_SONARR_PATH_MAP="" HOST1_RADARR_URL="http://192.168.50.2:7878" HOST1_RADARR_API_KEY="..." HOST1_RADARR_MOVIES_ROOT="/mnt/user/Movies" HOST1_RADARR_PATH_MAP="" HOST1_EMBY_URL="http://192.168.50.2:8096" HOST1_EMBY_API_KEY="..." ``` > **LIDARR/SONARR/RADARR_MUSIC/TV/MOVIES_ROOT must exactly match the Root Folder path in > the arr's own settings.** Arr UI → Settings → Media Management → Root Folders. > A mismatch means every file on disk looks untracked — all appear as orphans. > MAX_DELETE_GB is the only thing standing between a path mismatch and losing your library. --- ## ━━━ SAFE TESTING PROCEDURE ━━━ > **The arr cleanup scripts permanently delete files.** There is no recycle bin, no undo. > Follow this procedure on first use, after any root path change, after any API key change, > and after any significant arr library change. ### Step 1 — Dry Run With Full Logging ```bash lidarr_cleanup.sh --dry-run --log sonarr_cleanup.sh --dry-run --log radarr_cleanup.sh --dry-run --log ``` ### Step 2 — Review the Output ``` Are TRACKED files the ones you expect? → Known arr-managed files should show as TRACKED → If they show as ORPHAN, the root path is wrong — STOP Is the ORPHAN count reasonable? → Healthy cleanup removes dozens to hundreds, not tens of thousands → Large count = stop, investigate root path before proceeding Are PROTECTED patterns working? → Artwork (*.jpg) and subtitles (*.srt) must show as PROTECTED → If they show as ORPHAN, check PROTECTED_PATTERNS config Are RECENT files being correctly skipped? → Files downloaded in the last 7 days should show as RECENT, not ORPHAN ``` ### Step 3 — Check Numbers if Something Looks Wrong ```bash # Root path mismatch? Compare these: # Lidarr UI: Settings → Media Management → Root Folders # Sonarr UI: Settings → Media Management → Root Folders # Radarr UI: Settings → Media Management → Root Folders # Must exactly match LIDARR_MUSIC_ROOT / SONARR_TV_ROOT / RADARR_MOVIES_ROOT # Is the arr running? docker ps | grep -E "Lidarr|Sonarr|Radarr" # Library scan not complete? # Trigger manual scan in arr UI and wait for completion ``` ### Step 4 — Run Live ```bash # Only after dry run review passes. lidarr_cleanup.sh sonarr_cleanup.sh radarr_cleanup.sh ``` ### Step 5 — Verify in Arr UI ``` Library count — should not have dropped significantly healthy cleanup removes a small number, not a large percentage Missing files — check if any monitored content shows as missing Emby library — should show no ghost entries (notify_emby_scan handles this automatically) ``` --- ## ━━━ PROCEDURES ━━━ ### Adding a New Arr ```bash # 1. Copy radarr_cleanup.sh as template cp radarr_cleanup.sh readarr_cleanup.sh # 2. Replace RADARR_ prefix with READARR_ throughout # Update API endpoint, tracked file API path, extension list, protected patterns # 3. Add to master_host*.conf HOST1_READARR_URL="http://192.168.50.2:8787" HOST1_READARR_API_KEY="your-api-key" HOST1_READARR_BOOKS_ROOT="/mnt/user/Books" # 4. Add thresholds to master.conf READARR_ORPHAN_AGE=7 READARR_MAX_DELETE_GB=50 READARR_EXTENSIONS=("epub" "pdf" "mobi" "azw3" "cbz" "cbr") READARR_PROTECTED_PATTERNS=("*.jpg" "*.jpeg" "*.png" "*.nfo") # 5. Add to MEDIA_MAINTENANCE_JOBS in master.conf MEDIA_MAINTENANCE_JOBS=( ...existing jobs... "Media/readarr_cleanup.sh" ) ``` media_management.sh picks it up automatically. No orchestrator changes needed. Run `--dry-run --log` before scheduling. --- ### Managing the Arr Sync Blocklist ```bash # Add item to blocklist (removes from all arrs + tombstones the ID) arr_sync.sh --blocklist-add lidarr "reason" arr_sync.sh --blocklist-add sonarr "reason" arr_sync.sh --blocklist-add radarr "reason" # Remove from blocklist (un-tombstones the ID — does NOT re-add to arrs) arr_sync.sh --blocklist-remove lidarr # View all blocklisted IDs arr_sync.sh --blocklist-list ``` `--blocklist-add` is the only destructive operation — it simultaneously: 1. Writes the tombstone entry to the blocklist TSV file 2. Deletes the item from the local arr API (no file deletion) 3. SSHes each remote node and deletes from their arr API Files become orphans on all nodes — arr_cleanup removes them on the next run. --- ## ━━━ TROUBLESHOOTING ━━━ ### Arr Cleanup Deleting Files It Shouldn't ``` 1. Check the protected patterns — artwork and subtitles must be listed LIDARR_PROTECTED_PATTERNS / SONARR_PROTECTED_PATTERNS / RADARR_PROTECTED_PATTERNS 2. Check the root path matches arr settings exactly Run: lidarr_cleanup.sh --status (shows configured root path) Compare: Lidarr UI → Settings → Media Management → Root Folders 3. Check if files are truly orphaned Run: lidarr_cleanup.sh --dry-run --log Look for the specific file — verify it shows ORPHAN, not PROTECTED or TRACKED ``` ### Arr Cleanup Aborting at Safety Layer 6 (Tracked Count Drop) ``` API returned far fewer tracked files than last run. Possible causes: - Arr database was recently rebuilt from scratch - Large manual library removal - Path map mismatch after arr migration If intentional (library intentionally reduced): Delete LIDARR_TRACKED_COUNT_FILE to reset the baseline Run cleanup once — it will establish a new baseline If unintentional: Investigate before proceeding — the arr may have a problem ``` ### Arr Sync Not Picking Up New Content ``` Is ARR_SYNC_ENABLED=true in master.conf? Can this host SSH to the remote without password? → ssh -i [SSH_KEY] root@[remote-tailscale-ip] "hostname" Is the arr accessible on the remote? → arr_sync.sh --status (shows each node's arr reachability) → arr_sync.sh --log (verbose output per-node, per-arr) Is the item in the blocklist? → arr_sync.sh --blocklist-list ``` ### Emby Still Showing Ghost Entries After Cleanup ``` notify_emby_scan() is called automatically after every arr cleanup deletion. If ghosts persist: 1. Is Emby's API responding? curl -s "http://[emby-ip]:8096/System/Info/Public" 2. Is EMBY_URL / EMBY_API_KEY correct in master_host*.conf? Run: sonarr_cleanup.sh --status (shows Emby config) 3. Trigger manually in Emby: Library → Manage Library → Clean Missing Files ``` --- ## ━━━ FLAG REFERENCE ━━━ ### media_shares_permissions.sh `media_shares_permissions.sh` Apply correct ownership and permissions to all configured media shares. Safe to run manually at any time — idempotent, only changes what's wrong. `media_shares_permissions.sh --dry-run` Show how many files and directories would be corrected per share. If unexpectedly large, check container PUID/PGID settings first (PUID=99 PGID=100). `media_shares_permissions.sh --status` Show configured share list and ownership of the share roots. `media_shares_permissions.sh --log` Show ownership correction count per share and per file (verbose). > On large libraries this runs 20-30 minutes. This is expected — millions of files with > recursive walk takes time. Designed to run overnight in the maintenance window. --- ### media_cleaner.sh `media_cleaner.sh anime` Remove junk files from anime share folders using ANIME_FILE_PATTERNS. `media_cleaner.sh media` Remove junk files from media share folders using MEDIA_FILE_PATTERNS. `media_cleaner.sh [profile] --dry-run` Show what would be deleted without removing anything. Always run first when adding new patterns or folders. `media_cleaner.sh [profile] --status` Show folder list and file patterns for the profile. `media_cleaner.sh [profile] --log` Show every file examined, not just those removed. --- ### lidarr_cleanup.sh / sonarr_cleanup.sh / radarr_cleanup.sh `[script] --dry-run --log` Preview every classification decision. **Always run this first.** See Safe Testing Procedure. `[script]` Live run — deletes confirmed orphans and junk, triggers Emby clean. `[script] --log` Live run with verbose per-file output. `[script] --status` Show configuration, API status, tracked file count, and last run stats. `[script] --i-know-what-im-doing` Bypass the MAX_DELETE_GB size threshold. Required when deletion exceeds the configured limit. Long flag name is intentional — cannot be added accidentally. `[script] --skip-strike-list` Bypass the ORPHAN_AGE age check. Deletes RECENT files too — files that are under the age threshold. Use when you know recent downloads are actually orphans. `[script] --i-know-what-im-doing --skip-strike-list` **NUCLEAR MODE** — age check and size threshold both bypassed. Deletes on first pass. Use when you want a clean one-pass wipe of everything the arr doesn't track. No recovery possible after deletion. --- ### arrs_failed_stalled_recovery.sh `arrs_failed_stalled_recovery.sh` Check all configured arrs for failed imports and stalled downloads. Blocklist + remove + re-search for each problem item. `arrs_failed_stalled_recovery.sh --dry-run` Show what would be actioned per arr without making any changes. `arrs_failed_stalled_recovery.sh --status` Show configuration, arr reachability, and last recovery stats. `arrs_failed_stalled_recovery.sh --log` Verbose output per item per arr. --- ### arr_sync.sh `arr_sync.sh` Sync all arr types across all configured nodes. `arr_sync.sh --dry-run` Show what would be added/removed on each node without making changes. `arr_sync.sh --status` Show node configuration, arr reachability, and blocklist count. `arr_sync.sh --log` Verbose per-node, per-arr output. `arr_sync.sh --blocklist-add [arr] [id] "[reason]"` Remove item from all arrs and tombstone the ID. See Procedures above. `arr_sync.sh --blocklist-remove [arr] [id]` Remove tombstone — does NOT re-add item to arrs. `arr_sync.sh --blocklist-list` Show all tombstoned IDs. --- ### radarr_tmdb_removed.sh / sonarr_tvdb_removed.sh `[script]` Remove records for entries with status="deleted" (dropped from upstream database). Files are kept. Import exclusion is added. `[script] --delete-files` Also delete associated files from disk. Most dropped entries have no files — they were announced movies/series that were never downloaded. `[script] --dry-run` Preview what would be removed without making changes. `[script] --status` Show arr connection status and current count of dropped entries. `[script] --log` Verbose per-entry output. --- ### lidarr_missing_art.sh `lidarr_missing_art.sh` Fetch all missing album and artist artwork from fanart.tv and fallback sources. Never overwrites existing files. `lidarr_missing_art.sh --dry-run` Show what would be downloaded without writing any files. `lidarr_missing_art.sh --status` Show configuration and API key status. `lidarr_missing_art.sh --log` Verbose per-album, per-artist output.