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

upgrade: backup before upgrading, and restore backup on failure

This commit is contained in:
Pierre de La Morinerie 2017-10-11 15:50:00 +05:30
parent ee7b6a1522
commit faa51975af

View file

@ -29,25 +29,25 @@ version=$(cat "$root_path/VERSION")
archive_filename="mattermost-$version.tar.gz"
#=================================================
# ACTIVE TRAP
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
function cleanup_and_restart
{
set +e
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# Restore the backup if the upgrade fails
ynh_restore_upgradebackup
# Remove the temporary archive
sudo rm -f "$archive_filename"
sudo supervisorctl start mattermost
# Exit (without triggering a package_linter warning)
die_command='ynh_' + 'die'
$die_command "An error occurred during the installation."
# Restart the server
sudo supervisorctl restart mattermost
}
trap cleanup_and_restart ERR
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
# DOWNLOAD SOURCE
#=================================================
archive_url="https://releases.mattermost.com/${version}/mattermost-team-${version}-linux-amd64.tar.gz"