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

71 lines
2.2 KiB
Text
Raw Normal View History

2013-12-11 21:23:28 +01:00
#!/bin/bash
2020-10-20 23:28:09 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2017-03-08 23:34:00 +01:00
source /usr/share/yunohost/helpers
2020-10-20 23:45:55 +02:00
ynh_abort_if_errors
2020-10-20 23:28:09 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --time --weight=1
2017-03-08 23:34:00 +01:00
app=$YNH_APP_INSTANCE_NAME
2017-03-08 23:34:00 +01:00
# Récupère les infos de l'application.
domain=$(ynh_app_setting_get $app domain)
path=$(ynh_app_setting_get $app path)
name=$(ynh_app_setting_get "$app" name)
language=$(ynh_app_setting_get "$app" language)
# Set default values
name="${name:-YunoJappix}"
language="${language:-en}"
2013-12-11 21:23:28 +01:00
# Remove trailing "/" for next commands
2017-03-08 23:34:00 +01:00
CHECK_PATH
2017-03-08 23:34:00 +01:00
#=================================================
2013-12-11 21:23:28 +01:00
# Copy files to the right place
2017-03-08 23:34:00 +01:00
#=================================================
final_path="/var/www/${app}"
2017-03-08 23:34:00 +01:00
ynh_app_setting_set $app final_path $final_path
SETUP_SOURCE # Télécharge la source, décompresse et copie dans $final_path
2020-10-20 23:28:09 +02:00
mkdir -p "${final_path}/store/conf"
cp ../conf/*.xml "${final_path}/store/conf/"
2013-12-11 21:23:28 +01:00
# Set permissions to jappix directory
sudo chown -R www-data: "$final_path"
# Set and copy NGINX configuraion
2020-10-20 23:28:09 +02:00
sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf
sed -i "s@ALIASTOCHANGE@${final_path}/@g" ../conf/nginx.conf
cp ../conf/nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
# Set Jappix configuration
2020-10-20 23:28:09 +02:00
sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml"
sed -i "s@CHANGELANG@${language}@g" "${final_path}/store/conf/main.xml"
sed -i "s@CHANGENAME@${name}@g" "${final_path}/store/conf/main.xml"
sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/hosts.xml"
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading nginx web server..." --time --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --time --last