diff --git a/scripts/backup b/scripts/backup index aa4bfe3..9e3d9d5 100755 --- a/scripts/backup +++ b/scripts/backup @@ -20,6 +20,7 @@ ynh_abort_if_errors app=$YNH_APP_INSTANCE_NAME final_path="/var/www/$app" +data_path="/home/yunohost.app/$app" domain=$(ynh_app_setting_get $app domain) db_name="$app" default_backup_dir="${1}apps/$app" @@ -33,6 +34,12 @@ backup_dir=${backup_dir:-"$default_backup_dir"} ynh_backup "$final_path" "${backup_dir}$final_path" +#================================================= +# BACKUP THE APP DATA +#================================================= + +ynh_backup "$data_path" "${backup_dir}$data_path" + #================================================= # BACKUP THE DATABASE #================================================= diff --git a/scripts/restore b/scripts/restore index bd4ef34..df91701 100644 --- a/scripts/restore +++ b/scripts/restore @@ -51,6 +51,12 @@ ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf" ynh_restore_file "$final_path" +#================================================= +# RESTORE THE APP DATA +#================================================= + +ynh_restore_file "$data_path" + #================================================= # RESTORE THE MYSQL DATABASE #=================================================