diff --git a/DBRepair.sh b/DBRepair.sh index e52dff6..77164ae 100755 --- a/DBRepair.sh +++ b/DBRepair.sh @@ -2,12 +2,12 @@ ######################################################################### # Plex Media Server database check and repair utility script. # # Maintainer: ChuckPa # -# Version: v1.10.02 # -# Date: 03-Jan-2025 # +# Version: v1.10.03 # +# Date: 17-Mar-2025 # ######################################################################### # Version for display purposes -Version="v1.10.02" +Version="v1.10.03" # Have the databases passed integrity checks CheckedDB=0 @@ -62,6 +62,9 @@ STATPERMS="%a" # On all hosts except QNAP DFFLAGS="-m" +# If LC_ALL is null, default to C +[ "$LC_ALL" = "" ] && export LC_ALL=C + # Universal output function Output() { if [ $Scripted -gt 0 ]; then @@ -2360,4 +2363,4 @@ do esac done done -exit 0 \ No newline at end of file +exit 0 diff --git a/ReleaseNotes b/ReleaseNotes index 70f153d..ea5e50b 100644 --- a/ReleaseNotes +++ b/ReleaseNotes @@ -8,6 +8,10 @@ ![Maintenance](https://img.shields.io/badge/Maintained-Yes-green.svg) # Release Info: +v1.10.03 + + 1. LC_ALL - When LC_ALL="", set LC_ALL=C (MacOS now needs this) + v1.10.02 1. Refactor UPDATE - QNAP BusyBox no longer support POSIX grep. Refactored.