mirror of
https://github.com/YunoHost-Apps/pleroma_ynh.git
synced 2024-09-03 20:15:59 +02:00
Merge branch 'testing' into 2.1.2
This commit is contained in:
commit
bb50238e1f
4 changed files with 18 additions and 2 deletions
4
check_process
Executable file → Normal file
4
check_process
Executable file → Normal file
|
@ -44,7 +44,7 @@
|
||||||
# 2.0.5~ynh2
|
# 2.0.5~ynh2
|
||||||
upgrade=1 from_commit=30696599937984e9879da22220253f005e290cd0
|
upgrade=1 from_commit=30696599937984e9879da22220253f005e290cd0
|
||||||
# 2.0.7~ynh1
|
# 2.0.7~ynh1
|
||||||
upgrade=1 from_commit=e8a4a37c2fa35255d0ca3927df8da09e3c5829b6
|
upgrade=1 from_commit=e13745923a2e06e780e7b9d34ae084f600a9a2a2
|
||||||
backup_restore=1
|
backup_restore=1
|
||||||
multi_instance=0
|
multi_instance=0
|
||||||
# This test is no longer necessary since the version 2.7 (PR: https://github.com/YunoHost/yunohost/pull/304), you can still do it if your app could be installed with this version.
|
# This test is no longer necessary since the version 2.7 (PR: https://github.com/YunoHost/yunohost/pull/304), you can still do it if your app could be installed with this version.
|
||||||
|
@ -80,5 +80,5 @@ Notification=yes
|
||||||
name=2.0.5~ynh1
|
name=2.0.5~ynh1
|
||||||
; commit=30696599937984e9879da22220253f005e290cd0
|
; commit=30696599937984e9879da22220253f005e290cd0
|
||||||
name=2.0.5~ynh2
|
name=2.0.5~ynh2
|
||||||
; commit=e8a4a37c2fa35255d0ca3927df8da09e3c5829b6
|
; commit=e13745923a2e06e780e7b9d34ae084f600a9a2a2
|
||||||
name=2.0.7~ynh1
|
name=2.0.7~ynh1
|
||||||
|
|
0
manifest.json
Executable file → Normal file
0
manifest.json
Executable file → Normal file
|
@ -31,6 +31,7 @@ final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
||||||
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
||||||
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
||||||
cache=$(ynh_app_setting_get --app=$app --key=cache)
|
cache=$(ynh_app_setting_get --app=$app --key=cache)
|
||||||
|
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# DECLARE DATA AND CONF FILES TO BACKUP
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
||||||
|
@ -75,6 +76,13 @@ ynh_print_info --message="Backing up the PostgreSQL database..."
|
||||||
|
|
||||||
ynh_psql_dump_db --database="$db_name" > db.sql
|
ynh_psql_dump_db --database="$db_name" > db.sql
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# BACKUP THE DATA DIRECTORY
|
||||||
|
#=================================================
|
||||||
|
ynh_script_progression --message="Backing up data directory..."
|
||||||
|
|
||||||
|
ynh_backup --src_path="$datadir" --is_big
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# END OF SCRIPT
|
# END OF SCRIPT
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -109,8 +109,16 @@ previous_version="${version}"
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
|
||||||
|
|
||||||
|
# Inform the backup/restore process that it should not save the data directory
|
||||||
|
# Use only for the previous backup script that doesn't set 'is_big'
|
||||||
|
ynh_app_setting_set --app=$app --key=backup_core_only --value=1
|
||||||
|
|
||||||
# Backup the current version of the app
|
# Backup the current version of the app
|
||||||
ynh_backup_before_upgrade
|
ynh_backup_before_upgrade
|
||||||
|
|
||||||
|
# Remove the option backup_core_only after the backup.
|
||||||
|
ynh_app_setting_delete --app=$app --key=backup_core_only
|
||||||
|
|
||||||
ynh_clean_setup () {
|
ynh_clean_setup () {
|
||||||
ynh_clean_check_starting
|
ynh_clean_check_starting
|
||||||
# restore it if the upgrade fails
|
# restore it if the upgrade fails
|
||||||
|
|
Loading…
Add table
Reference in a new issue