54 lines
1.3 KiB
Bash
Executable File
54 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
print_help () {
|
|
echo -e "./update.sh www_basedir"
|
|
echo -e "\tbase_dir: The place where the web application is in"
|
|
}
|
|
|
|
# Ensure to be root
|
|
if [ "$EUID" -ne 0 ]; then
|
|
echo "Please run as root"
|
|
exit
|
|
fi
|
|
|
|
# Ensure there are enought arguments
|
|
if [ "$#" -ne 1 ]; then
|
|
print_help
|
|
exit
|
|
fi
|
|
|
|
www="$1/openvpn-admin"
|
|
|
|
if [ ! -d "$www" ]; then
|
|
print_help
|
|
exit
|
|
fi
|
|
|
|
base_path=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
user=$(ls -l "$www/include/config.php" | awk '{ print $3 }')
|
|
group=$(ls -l "$www/include/config.php" | awk '{ print $4 }')
|
|
|
|
|
|
rm -rf "${www:?}/"{index.php,bower.json,.bowerrc,js,include/html,include/connect.php,include/functions.php,include/grids.php,css,vendor}
|
|
|
|
cp -r "$base_path/"{index.php,bower.json,.bowerrc,js,css} "$www"
|
|
cp -r "$base_path/include/"{html,connect.php,functions.php,grids.php} "$www/include"
|
|
|
|
cd "$www" || exit
|
|
|
|
bower --allow-root install
|
|
chown -R "$user:$group" "$www"
|
|
|
|
rm -f "/etc/openvpn/scripts/"{connect.sh,disconnect.sh,login.sh,functions.sh}
|
|
cp "$base_path/installation/scripts/"{connect.sh,disconnect.sh,login.sh,functions.sh} "/etc/openvpn/scripts"
|
|
chmod +x "/etc/openvpn/scripts/"{connect.sh,disconnect.sh,login.sh,functions.sh}
|
|
|
|
echo "Processing database migration..."
|
|
|
|
php "$base_path/migration.php" "$www"
|
|
|
|
echo "Database migrations done."
|
|
|
|
echo "OpenVPN-admin upgraded."
|