mirror of
https://github.com/RWejlgaard/pez-infra.git
synced 2026-05-06 04:14:43 +00:00
Add the full media automation stack (sonarr, radarr, prowlarr, lidarr, readarr, whisparr), media servers (jellyfin, plex), and supporting services (transmission, samba, ollama, promtail, cloudflared, vsftpd) to the repo as a media_stack Ansible role. Includes: - Custom systemd unit files for non-package-managed services - Config files for promtail, samba, transmission, vsftpd - Cron jobs for movie-rename-fix, sonarr/radarr midnight restarts - Updated deploy.yml to wire the role into london-b's stage - Updated london-b docs with full service inventory Backup script (backup.sh) already covered by the existing backup role. Node/systemd exporters already covered by existing monitoring roles. Closes PESO-92
7 lines
149 B
Fish
Executable file
7 lines
149 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
cd /hdd/movies
|
|
|
|
for i in (find . -name "*www.UIndex.org - *")
|
|
mv $i (echo $i | sed 's/www.UIndex.org - //')
|
|
end
|