1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/grav_ynh.git synced 2024-09-03 19:16:01 +02:00
grav_ynh/scripts/upgrade

59 lines
1.7 KiB
Text
Raw Normal View History

2015-11-11 18:03:16 +01:00
#!/bin/bash
2017-03-02 15:44:54 +01:00
# Exit on command errors and treat unset variables as an error
set -eu
2015-11-11 18:03:16 +01:00
2017-03-02 15:44:54 +01:00
source .fonctions # Charge les fonctions génériques habituellement utilisées dans le script
# See comments in install script
app=$YNH_APP_INSTANCE_NAME
# Source YunoHost helpers
source /usr/share/yunohost/helpers
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
path=$(ynh_app_setting_get "$app" path)
admin=$(ynh_app_setting_get "$app" admin)
is_public=$(ynh_app_setting_get "$app" is_public)
language=$(ynh_app_setting_get "$app" language)
CHECK_PATH # Vérifie et corrige la syntaxe du path.
2015-11-11 18:03:16 +01:00
# Check if admin is not null
2017-03-02 15:44:54 +01:00
if [[ "$admin" = "" || "$is_public" = "" || "$language" = "" ]]; then
2015-11-11 18:03:16 +01:00
echo "Unable to upgrade, please contact support"
2017-03-02 15:44:54 +01:00
ynh_die
2015-11-11 18:03:16 +01:00
fi
2017-03-02 15:44:54 +01:00
root_pwd=$(sudo cat /etc/yunohost/mysql)
final_path=/var/www/$app
db_name=$app
# CHECK_MD5_CONFIG "connect.php" "$final_path/config/connect.php" # Créé un backup du fichier de config si il a été modifié.
2015-11-11 18:03:16 +01:00
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf*
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf*
if [ $is_public = "Yes" ];
then
2017-03-02 15:44:54 +01:00
sudo cp ../conf/nginx.conf-public /etc/nginx/conf.d/$domain.d/$app.conf
else
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
fi
# If app is public, add url to SSOWat conf as skipped_uris
if [[ $is_public -eq 1 ]]; then
# See install script
ynh_app_setting_set "$app" unprotected_uris "/"
sudo cp ../conf/nginx.conf-public /etc/nginx/conf.d/$domain.d/$app.conf
2015-11-11 18:03:16 +01:00
else
2017-03-02 15:44:54 +01:00
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
2015-11-11 18:03:16 +01:00
fi
# Reload Nginx
sudo service nginx reload