#!/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 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 fi #================================================= # UPGRADE DEPENDENCIES #================================================= ynh_script_progression --message="Upgrading dependencies..." --weight=1 ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version #================================================= # NGINX CONFIGURATION #================================================= ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1 # Create a dedicated NGINX config ynh_add_nginx_config #================================================= # ADD A CONFIGURATION #================================================= ynh_script_progression --message="Configuring the app..." --weight=10 pushd $install_dir ynh_use_nodejs 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 popd chmod -R o-rwx "$install_dir" chown -R $app:www-data "$install_dir" #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Upgrade of $app completed" --last