55 lines
1.4 KiB
Bash
Executable File
55 lines
1.4 KiB
Bash
Executable File
#!/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
|
|
# --------------------------------------
|
|
|
|
# ---------- version 5.2.4.4 -----------
|
|
# No changes
|
|
# --------------------------------------
|
|
|
|
# ---------- version 5.2.5 -------------
|
|
# No changes
|
|
# --------------------------------------
|
|
|
|
# ---------- version 5.3.0 -------------
|
|
# No changes
|
|
# --------------------------------------
|
|
|
|
# ---------- version 5.3.1 -------------
|
|
# No changes
|
|
# -------------------------------------- |