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

153 lines
5.4 KiB
Text
Raw Normal View History

2021-04-06 15:54:50 +02:00
#!/bin/bash
#https://docs.nodebb.org/configuring/upgrade/
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
2021-04-06 15:54:50 +02:00
2023-03-16 22:28:23 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2021-04-06 15:54:50 +02:00
2023-03-16 22:28:23 +01:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
#REMOVEME? db_user=$db_name
#REMOVEME? db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
2021-04-06 15:54:50 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2021-04-06 15:54:50 +02:00
# Backup the current version of the app
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_backup_before_upgrade
#REMOVEME? ynh_clean_setup () {
2021-04-06 15:54:50 +02:00
# Restore it if the upgrade fails
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_restore_upgradebackup
2021-04-06 15:54:50 +02:00
}
# Exit if an error occurs during the execution of the script
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_abort_if_errors
2021-04-06 15:54:50 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2021-08-31 17:05:07 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-04-06 15:54:50 +02:00
2022-03-05 13:59:53 +01:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
2021-04-06 15:54:50 +02:00
2022-01-27 01:16:53 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
# Cleaning legacy permissions
2023-03-16 22:28:23 +01:00
#REMOVEME? if ynh_legacy_permissions_exists; then
#REMOVEME? ynh_legacy_permissions_delete_all
2022-01-27 01:16:53 +01:00
ynh_app_setting_delete --app=$app --key=is_public
fi
2021-07-02 08:11:53 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-07-02 08:11:53 +02:00
# Create a dedicated user (if not existing)
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
2021-07-02 08:11:53 +02:00
2021-04-06 15:54:50 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-08-31 17:05:07 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-04-06 15:54:50 +02:00
2023-03-16 22:28:23 +01:00
pushd $install_dir
2021-09-23 07:40:23 +02:00
ynh_use_nodejs
2021-09-01 15:41:13 +02:00
# Shut down your forum
2023-03-16 22:28:23 +01:00
ynh_exec_as $app env "$ynh_node_load_PATH" $install_dir/nodebb stop
2021-09-01 15:41:13 +02:00
# Grab the latest and greatest code
git fetch # Grab the latest code from the NodeBB Repository
git reset --hard origin/$nodebb_version # Replace v1.12.x with the branch name!
# Run the NodeBB upgrade script
2023-03-16 22:28:23 +01:00
ynh_exec_as $app $ynh_node_load_PATH $install_dir/nodebb upgrade 2>/dev/null
2021-09-01 16:10:45 +02:00
popd
2021-04-06 15:54:50 +02:00
fi
2023-03-16 22:28:23 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-08-09 16:29:31 +02:00
2021-04-06 15:54:50 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-08-31 19:07:42 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2021-04-06 15:54:50 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_script_progression --message="Upgrading dependencies..." --weight=1
2021-04-06 15:54:50 +02:00
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
2021-08-09 16:29:31 +02:00
# Install Nodejs
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2021-04-06 15:54:50 +02:00
#=================================================
2021-08-31 22:41:28 +02:00
# SETUP SYSTEMD
2021-04-06 15:54:50 +02:00
#=================================================
2021-08-31 22:41:28 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2021-04-06 15:54:50 +02:00
2021-08-31 22:41:28 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
2021-04-06 15:54:50 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-08-09 16:29:31 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-04-06 15:54:50 +02:00
2021-09-01 18:36:40 +02:00
yunohost service add $app --description="Forum software" --log="/var/log/$app/$app.log"
2021-04-06 15:54:50 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-08-09 16:29:31 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-04-06 15:54:50 +02:00
2021-08-31 16:08:23 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2021-04-06 15:54:50 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-04-06 15:54:50 +02:00
2023-03-16 22:28:23 +01:00
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
2021-04-06 15:54:50 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-08-09 16:29:31 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last