8914f4dce9
- Created `TV_SHOWS_SQL_QUERY_PATTERNS.md` to document SQL query patterns for TV shows, including performance issues and missing indexes. - Added `README.md` for Linux package building, detailing steps for creating Debian and Red Hat packages. - Implemented build scripts for Debian and Red Hat, including service files and post-installation hooks. - Added necessary scripts for managing Jellyfin service lifecycle on both Debian and Red Hat systems. - Included package specifications and installation instructions for both distributions.
13 lines
288 B
Bash
13 lines
288 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Jellyfin Pre-Uninstall Script (Red Hat)
|
|
# Runs before package is removed
|
|
|
|
# Stop service
|
|
if command -v systemctl &> /dev/null; then
|
|
echo "Stopping Jellyfin service..."
|
|
systemctl stop jellyfin.service || true
|
|
systemctl disable jellyfin.service || true
|
|
fi
|