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
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
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)
|
|
|
|
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2021-01-09 23:03:18 +01:00
|
|
|
group_name=$(ynh_app_setting_get --app=$app --key=group_name)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
2021-01-10 14:40:27 +01:00
|
|
|
architecture=$(ynh_detect_arch)
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
2021-01-09 23:03:18 +01:00
|
|
|
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
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=3
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=2
|
|
|
|
|
|
|
|
# Create a temporary directory
|
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
|
|
|
|
# Backup the config file in the temp dir
|
|
|
|
cp -ar "$final_path/groups" "$tmpdir/groups"
|
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
|
2021-01-10 14:40:27 +01:00
|
|
|
ynh_setup_source --dest_dir="$final_path" --source_id="$architecture"
|
2021-01-09 23:03:18 +01:00
|
|
|
|
|
|
|
# Copy the admin saved settings from tmp directory to final path
|
|
|
|
cp -ar "$tmpdir/groups" "$final_path/groups"
|
|
|
|
|
|
|
|
# Remove the tmp directory securely
|
|
|
|
ynh_secure_remove --file="$tmpdir"
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2021-01-09 23:03:18 +01:00
|
|
|
# Recreate certificates
|
|
|
|
pushd "$final_path"
|
|
|
|
ynh_exec_warn_less openssl req -newkey rsa:2048 -nodes -keyout data/key.pem -x509 -days 365 -out data/cert.pem \
|
|
|
|
-subj "/C=/ST=/L=/O=/OU=/CN=/emailAddress="
|
2021-01-10 14:48:30 +01:00
|
|
|
chmod 640 data/{key.pem,cert.pem}
|
|
|
|
popd
|
2021-01-09 12:31:07 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
#ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2021-01-09 21:34:33 +01:00
|
|
|
#ynh_install_app_dependencies $pkg_dependencies
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
|
|
|
ynh_system_user_create --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Set permissions on app files
|
2021-01-09 23:03:18 +01:00
|
|
|
chown -R $app: $final_path
|
|
|
|
chmod -R 755 $final_path
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2021-01-09 21:34:33 +01:00
|
|
|
# ynh_script_progression --message="Upgrading logrotate configuration..." --time --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2021-01-09 21:34:33 +01:00
|
|
|
# # Use logrotate to manage app-specific logfile(s)
|
|
|
|
# ynh_use_logrotate --non-append
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2021-01-09 21:34:33 +01:00
|
|
|
yunohost service add $app --description="Videoconferencing server" --log="/var/log/$app/$app.log"
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
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
|
|
|
|
#=================================================
|
|
|
|
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|