1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/element_ynh.git synced 2024-09-03 18:36:08 +02:00
This commit is contained in:
Éric Gaspar 2024-05-22 14:57:25 +02:00
parent f0a0b0b2f0
commit d7e057a6c6
3 changed files with 6 additions and 23 deletions

View file

@ -5,7 +5,7 @@ name = "Element"
description.en = "Web client for Matrix"
description.fr = "Client web pour Matrix"
version = "1.11.66~ynh1"
version = "1.11.67~ynh1"
maintainers = ["Josué Tille"]
@ -56,8 +56,8 @@ ram.runtime = "0M"
[resources.sources]
[resources.sources.main]
url = "https://github.com/element-hq/element-web/releases/download/v1.11.66/element-v1.11.66.tar.gz"
sha256 = "4bab7bf011f650a94f2bc0a6e8f0f0cb7fe59975f3cced1cb270c47419169c37"
url = "https://github.com/element-hq/element-web/releases/download/v1.11.67/element-v1.11.67.tar.gz"
sha256 = "fb0eaf04eb26175db39f9436b772e01e1e5e2095e403dc0df0385e5256bf01e5"
autoupdate.strategy = "latest_github_release"
autoupdate.asset = "^element-v.*.tar.gz$"

View file

@ -26,13 +26,6 @@ ynh_script_progression --message="Restoring system configurations related to $ap
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
#=================================================
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================

View file

@ -9,12 +9,6 @@
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
@ -68,14 +62,10 @@ fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Upgrading source files..." --weight=1
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=1
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep="config.json"
fi
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep="config.json"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"