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

71 lines
2.1 KiB
Text
Raw Normal View History

2022-09-12 20:00:09 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2023-03-12 11:26:48 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=5
pushd $install_dir
chown -R $app:www-data "$install_dir"
git config --system --add safe.directory $install_dir
ynh_exec_as $app git fetch
ynh_exec_as $app git reset --hard --quiet $version_commit
ynh_exec_as $app git pull
popd
2022-09-12 20:00:09 +02:00
fi
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2023-02-23 17:01:18 +01:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2022-09-12 20:00:09 +02:00
2022-09-12 20:06:03 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2022-09-12 20:00:09 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-09-12 20:06:03 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2022-09-12 20:00:09 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2022-09-12 20:06:03 +02:00
#=================================================
# ADD A CONFIGURATION
#=================================================
2022-09-12 20:52:56 +02:00
ynh_script_progression --message="Configuring the app..." --weight=10
2022-09-12 20:06:03 +02:00
2023-02-23 16:56:28 +01:00
pushd $install_dir
2022-09-12 20:06:03 +02:00
ynh_use_nodejs
2023-01-24 17:56:49 +01:00
ynh_exec_warn_less $ynh_npm install -g npm@latest serve
ynh_exec_warn_less $ynh_npm install
ynh_exec_warn_less $ynh_npm run build
2022-09-12 20:06:03 +02:00
popd
2024-02-18 09:26:29 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-09-12 20:00:09 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last