#!/bin/bash #================================================= # GENERIC STARTING #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # CHECK VERSION #================================================= upgrade_type=$(ynh_check_app_version_changed) #================================================= # STANDARD UPGRADE STEPS #================================================= # INSTALL SOURCES #================================================= if [ "$upgrade_type" == "UPGRADE_APP" ] then ynh_script_progression --message="Upgrading source files..." # Download, check integrity, uncompress and patch the source from app.src mkdir -p "$install_dir" cp -r ../sources/extra_files/app/* "$install_dir" fi #================================================= # NGINX CONFIGURATION #================================================= ynh_add_nginx_config #================================================= # SPECIFIC UPGRADE #================================================= # USE THE CONFIG FILE #================================================= ynh_replace_string "(no-config)" "config.json" "$install_dir/index.html" #================================================= # COPY THE CONFIG FILE #================================================= # Copie ou modification d'un fichier de config ynh_add_config --template="config.json" --destination="$install_dir/config.json" #================================================= # GENERIC FINALISATION #================================================= # SECURING FILES AND DIRECTORIES #================================================= chmod 750 "$install_dir" 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