Incorporate changes made for old version 5.2.4.3
This commit is contained in:
40
files-update.sh
Executable file
40
files-update.sh
Executable 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
|
||||
# --------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user