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

96 lines
3.2 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
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# 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
#=================================================
# 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:34:12 +01:00
git config --system --add safe.directory $install_dir
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 -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:35:56 +01:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2021-04-06 15:54:50 +02:00
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
#=================================================
# END OF SCRIPT
#=================================================
2021-08-09 16:29:31 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last