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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
#=================================================
|
2024-04-14 18:18:35 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2021-04-06 15:54:50 +02:00
|
|
|
|
2024-04-14 18:18:35 +02:00
|
|
|
pushd $install_dir
|
|
|
|
ynh_use_nodejs
|
|
|
|
# Shut down your forum
|
|
|
|
git config --system --add safe.directory $install_dir
|
|
|
|
ynh_exec_as $app env "$ynh_node_load_PATH" $install_dir/nodebb stop
|
|
|
|
# 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
|
|
|
|
ynh_exec_as $app $ynh_node_load_PATH $install_dir/nodebb upgrade 2>/dev/null
|
|
|
|
popd
|
2021-04-06 15:54:50 +02:00
|
|
|
|
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
|
|
|
|
|
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
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
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
|