From 06c0f810ddcd0db52129921a248cd10948692584 Mon Sep 17 00:00:00 2001 From: ChuckPa Date: Wed, 25 Jun 2025 20:03:14 -0400 Subject: [PATCH] Add support for FreeBSD (14+) Thanks @cdf-eagles --- DBRepair.sh | 12 ++++++------ README.md | 14 ++++++++------ ReleaseNotes | 5 +++++ 3 files changed, 19 insertions(+), 12 deletions(-) diff --git a/DBRepair.sh b/DBRepair.sh index ae574af..f3c5321 100755 --- a/DBRepair.sh +++ b/DBRepair.sh @@ -2,8 +2,8 @@ ######################################################################### # Database Repair Utility for Plex Media Server. # # Maintainer: ChuckPa # -# Version: v1.11.06 # -# Date: 22-Jun-2025 # +# Version: v1.11.07 # +# Date: 25-Jun-2025 # ######################################################################### # Version for display purposes @@ -647,14 +647,14 @@ HostConfig() { # Use FreeBSD RC configuration to set paths if [ "x$plexmediaserver_plexpass_support_path" != "x" ]; then DBDIR="${plexmediaserver_plexpass_support_path}/Plex Media Server/Plug-in Support/Databases" - CACHEDIR="${plexmediaserver_plexpass_support_path}/Cache" + CACHEDIR="${plexmediaserver_plexpass_support_path}/Plex Media Server/Cache" elif [ "x$plexmediaserver_support_path" != "x" ]; then DBDIR="${plexmediaserver_support_path}/Plex Media Server/Plug-in Support/Databases" - CACHEDIR="${plexmediaserver_support_path}/Cache" + CACHEDIR="${plexmediaserver_support_path}/Plex Media Server/Cache" else # System is using default Ports package configuration paths DBDIR="/usr/local/plexdata${BsdPlexPass}/Plex Media Server/Plug-in Support/Databases" - CACHEDIR="/usr/local/plexdata${BsdPlexPass}/Cache" + CACHEDIR="/usr/local/plexdata${BsdPlexPass}/Plex Media Server/Cache" fi # Where is the software @@ -2475,4 +2475,4 @@ do esac done done -exit 0 +exit 0 \ No newline at end of file diff --git a/README.md b/README.md index 8cd7568..457b40f 100644 --- a/README.md +++ b/README.md @@ -92,12 +92,13 @@ Enter command # -or- command name (4 char min) : - BINHEX - HOTIO - Podman (libgpod) - 4. Linux workstation & server - 5. MacOS - 6. Netgear (OS5 Linux-based systems) - 7. QNAP (QTS & QuTS) - 8. Synology (DSM 6 & DSM 7) - 9. Western Digital (OS5) + 4. FreeBSD (14+) + 5. Linux workstation & server + 6. MacOS + 7. Netgear (OS5 Linux-based systems) + 8. QNAP (QTS & QuTS) + 9. Synology (DSM 6 & DSM 7) + 10. Western Digital (OS5) ``` # Installation @@ -116,6 +117,7 @@ Enter command # -or- command name (4 char min) : Binhex | N/A | Container root (adjacent /config) Docker (Plex,LSIO) | N/A | Container root (adjacent /config) Hotio | N/A | Container root (adjacent /config) + FreeBSD (14+) | N/A | Anywhere Kubernetes | N/A | Container root (adjacent /config) Linux (wkstn/svr) | N/A | Anywhere MacOS | N/A | Anywhere diff --git a/ReleaseNotes b/ReleaseNotes index 2fb5b9d..9731437 100644 --- a/ReleaseNotes +++ b/ReleaseNotes @@ -8,6 +8,11 @@ ![Maintenance](https://img.shields.io/badge/Maintained-Yes-green.svg) # Release Info: +v1.11.07 + + 1. Add support FreeBSD - Add support for FreeBSD (14+) + Thanks to @cdf-eagles for the work. + v1.11.06 1. Restart after update - Correct missing variable initialization.