Incorporate changes made for old version 5.2.4.3

This commit is contained in:
2026-02-10 15:02:40 -05:00
parent 6b720a6163
commit 4341c87daa
14 changed files with 228 additions and 229 deletions

40
files-update.sh Executable file
View File

@@ -0,0 +1,40 @@
#!/bin/bash
# files_update.sh
install_path=$1
# ---------- version 5.2.1 -------------
# No changes
# --------------------------------------
# ---------- version 5.2.2 -------------
# No changes
# --------------------------------------
# ---------- version 5.2.3 -------------
# No changes
# --------------------------------------
# ---------- version 5.2.4 -------------
# No changes
# --------------------------------------
# ---------- version 5.2.4.1 -----------
# No changes
# --------------------------------------
# ---------- version 5.2.4.2 -----------
# No changes
# --------------------------------------
# ---------- version 5.2.4.3 -----------
# Add AllowOverride Options to the apache conf-available file
install_loc=$(basename $install_path)
if ! grep -q "AllowOverride Options" /etc/apache2/conf-available/$install_loc.conf
then
sed -i '/^<Directory/a\ AllowOverride Options' /etc/apache2/conf-available/$install_loc.conf
systemctl reload apache2
fi
# --------------------------------------