1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/misskey_ynh.git synced 2024-09-03 19:46:03 +02:00

Merge branch 'enh-testing' of https://github.com/YunoHost-Apps/misskey_ynh into enh-testing

This commit is contained in:
ericgaspar 2021-05-15 18:40:38 +02:00
commit d52d4c5d1e
4 changed files with 7 additions and 7 deletions

View file

@ -18,8 +18,8 @@
multi_instance=1 multi_instance=1
change_url=0 change_url=0
;;; Options ;;; Options
Email=anmol@datamol.org Email=
Notification=all Notification=
;;; Upgrade options ;;; Upgrade options
; commit=CommitHash ; commit=CommitHash
name=Name and date of the commit. name=Name and date of the commit.

View file

@ -8,9 +8,9 @@
}, },
"version": "12.69.0~ynh1", "version": "12.69.0~ynh1",
"url": "https://join.misskey.page/en/", "url": "https://join.misskey.page/en/",
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0",
"maintainer": { "maintainer": {
"name": "Anmol" "name": "Anmol Sharma"
}, },
"requirements": { "requirements": {
"yunohost": ">= 4.2.4" "yunohost": ">= 4.2.4"

View file

@ -29,7 +29,7 @@ final_path=$(ynh_app_setting_get --app=$app --key=final_path)
#================================================= #=================================================
# Remove the service from the list of services known by Yunohost (added from `yunohost service add`) # Remove the service from the list of services known by Yunohost (added from `yunohost service add`)
if ynh_exec_warn_less yunohost service status $app >/dev/null if ynh_exec_warn_less yunohost service status "$app" >/dev/null
then then
ynh_script_progression --message="Removing $app service integration..." --weight=1 ynh_script_progression --message="Removing $app service integration..." --weight=1
yunohost service remove $app yunohost service remove $app
@ -41,7 +41,7 @@ fi
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1 ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
# Remove the dedicated systemd config # Remove the dedicated systemd config
ynh_remove_systemd_config ynh_remove_systemd_config --service="$app"
#================================================= #=================================================
# REMOVE THE POSTGRESQL DATABASE # REMOVE THE POSTGRESQL DATABASE

View file

@ -93,7 +93,7 @@ fi
ynh_script_progression --message="Upgrading nginx web server configuration..." ynh_script_progression --message="Upgrading nginx web server configuration..."
# Create a dedicated nginx config # Create a dedicated nginx config
ynh_add_nginx_config ynh_add_nginx_config 'port'
#================================================= #=================================================
# UPGRADE DEPENDENCIES # UPGRADE DEPENDENCIES