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

115 lines
3.2 KiB
Text
Raw Normal View History

2014-08-18 18:37:19 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2014-08-18 18:37:19 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-02-17 20:54:53 +01:00
ynh_print_info "Loading installation settings..."
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
path_url=$(ynh_app_setting_get $app path)
is_public=$(ynh_app_setting_get $app is_public)
final_path=$(ynh_app_setting_get $app final_path)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-02-17 20:54:53 +01:00
ynh_print_info "Ensuring downward compatibility..."
# Fix is_public as a boolean value
if [ "$is_public" = "Yes" ]; then
ynh_app_setting_set $app is_public 1
is_public=1
elif [ "$is_public" = "No" ]; then
ynh_app_setting_set $app is_public 0
is_public=0
fi
# If final_path doesn't exist, create it
if [ -z $final_path ]; then
final_path=/var/www/$app
ynh_app_setting_set $app final_path $final_path
fi
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2019-02-17 20:54:53 +01:00
ynh_print_info "Backing up the app before upgrading (may take a while)..."
2019-02-13 18:38:44 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2019-02-13 18:38:44 +01:00
# restore it if the upgrade fails
ynh_restore_upgradebackup
}
2019-02-13 18:38:44 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
path_url=$(ynh_normalize_url_path $path_url)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# COPY SOURCES
#=================================================
2019-02-17 20:54:53 +01:00
ynh_print_info "Upgrading source files..."
2014-08-18 18:37:19 +02:00
# Copy files to the right place
cp -a ../sources/. $final_path
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-02-17 20:54:53 +01:00
ynh_print_info "Upgrading nginx web server configuration..."
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions to app files
2019-02-13 18:38:44 +01:00
chown -R root: $final_path
#=================================================
# SETUP SSOWAT
#=================================================
2019-02-17 20:54:53 +01:00
ynh_print_info "Upgrading SSOwat configuration..."
# Make app public if necessary
if [ $is_public -eq 1 ]
2014-08-18 18:41:14 +02:00
then
# unprotected_uris allows SSO credentials to be passed anyway.
ynh_app_setting_set $app skipped_uris "/"
2014-08-18 18:41:14 +02:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2019-02-17 20:54:53 +01:00
ynh_print_info "Reloading nginx web server..."
systemctl reload nginx
2019-02-17 20:54:53 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Upgrade of $app completed"