Compare commits
1 commit
master
...
Add-no_saf
Author | SHA1 | Date | |
---|---|---|---|
|
0c33e19229 |
1 changed files with 12 additions and 9 deletions
|
@ -38,16 +38,19 @@ upgrade_type=$(ynh_check_app_version_changed)
|
||||||
#=================================================
|
#=================================================
|
||||||
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --time --weight=1
|
|
||||||
|
|
||||||
# Backup the current version of the app
|
# Backup the current version of the app unless --no_safety_backup option is used
|
||||||
ynh_backup_before_upgrade
|
if [ "$NO_BACKUP_UPGRADE" -eq 0 ]
|
||||||
ynh_clean_setup () {
|
then
|
||||||
# Restore it if the upgrade fails
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --time --weight=1
|
||||||
ynh_restore_upgradebackup
|
ynh_backup_before_upgrade
|
||||||
}
|
ynh_clean_setup () {
|
||||||
# Exit if an error occurs during the execution of the script
|
# Restore it if the upgrade fails
|
||||||
ynh_abort_if_errors
|
ynh_restore_upgradebackup
|
||||||
|
}
|
||||||
|
# Exit if an error occurs during the execution of the script
|
||||||
|
ynh_abort_if_errors
|
||||||
|
fi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# STANDARD UPGRADE STEPS
|
# STANDARD UPGRADE STEPS
|
||||||
|
|
Loading…
Reference in a new issue