1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/galene_ynh.git synced 2024-09-03 18:36:31 +02:00
galene_ynh/scripts/upgrade

172 lines
5.8 KiB
Text
Raw Normal View History

2021-01-09 12:31:07 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-01-09 12:31:07 +01:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
admin=$(ynh_app_setting_get --app=$app --key=admin)
2021-11-05 19:32:17 +01:00
password=$(ynh_app_setting_get --app=$app --key=password)
2021-01-09 12:31:07 +01:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
group_name=$(ynh_app_setting_get --app=$app --key=group_name)
port=$(ynh_app_setting_get --app=$app --key=port)
turn_port=$(ynh_app_setting_get --app=$app --key=turn_port)
architecture=$(ynh_detect_arch)
2021-01-09 12:31:07 +01:00
2021-09-09 14:49:46 +02:00
if ynh_compare_current_package_version --comparison le --version 0.3.5~ynh3
then
ynh_die --message="Please, you need to remove the app and reinstall it"
fi
2021-01-09 12:31:07 +01:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2021-09-06 10:34:58 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# Restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2021-01-09 12:31:07 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2021-01-09 12:31:07 +01:00
# If open, close direct access to $port in firewall
if yunohost firewall list | grep -q "\- $port$"
then
ynh_exec_warn_less yunohost firewall disallow TCP $port
fi
2021-01-09 12:31:07 +01:00
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
final_path=/opt/yunohost/$app
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2021-01-09 12:31:07 +01:00
2021-03-15 10:14:32 +01:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
2021-05-25 10:35:22 +02:00
ynh_legacy_permissions_delete_all
2021-03-15 10:14:32 +01:00
2021-05-25 10:35:22 +02:00
ynh_app_setting_delete --app=$app --key=is_public
2021-03-15 10:14:32 +01:00
fi
2021-01-09 12:31:07 +01:00
#=================================================
2021-09-06 10:34:58 +02:00
# CREATE DEDICATED USER
2021-01-09 12:31:07 +01:00
#=================================================
2021-09-06 10:34:58 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-01-09 12:31:07 +01:00
2021-09-06 10:34:58 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
2021-01-09 12:31:07 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=3
2021-01-09 12:31:07 +01:00
2021-01-25 16:01:55 +01:00
ynh_systemd_action --service_name=$app --action=stop --log_path="/var/log/$app/$app.log"
2021-01-09 12:31:07 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=2
2021-11-05 19:32:17 +01:00
ynh_setup_source --dest_dir="$final_path" --source_id="$architecture" #--keep="$final_path/data/config.json"
fi
2021-06-02 09:36:30 +02:00
chmod 750 "$final_path"
2021-06-02 09:50:46 +02:00
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2021-11-05 19:32:17 +01:00
#=================================================
# CREATE DATA FOLDER
#=================================================
2021-11-06 11:25:48 +01:00
ynh_script_progression --message="Upgrading configuration file..." --weight=2
2021-11-05 19:32:17 +01:00
# Create data folder
mkdir -p "$final_path/data"
2021-11-06 10:41:58 +01:00
# We remove the old admin/password file if present
if [ -f "$final_path/data/passwd" ] ; then
ynh_secure_remove --file="$final_path/data/passwd"
fi
2021-11-05 19:32:17 +01:00
ynh_add_config --template="../conf/config.json" --destination="$final_path/data/config.json"
chmod 400 "$final_path/data/config.json"
chown $app:$app "$final_path/data/config.json"
2021-01-09 12:31:07 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=3
2021-01-09 12:31:07 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2021-01-09 12:31:07 +01:00
2021-03-01 10:19:46 +01:00
public_ip4="$(curl -s ip.yunohost.org)" || true
2021-01-09 12:31:07 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-01-09 12:31:07 +01:00
yunohost service add $app --description="Videoconferencing server" --log="/var/log/$app/$app.log" --needs_exposed_ports="$turn_port"
2021-01-09 12:31:07 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-01-09 12:31:07 +01:00
2021-09-06 10:34:58 +02:00
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
2021-01-09 12:31:07 +01:00
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
2021-01-09 12:31:07 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last