mirror of
https://github.com/YunoHost-Apps/mautrix_signal_ynh.git
synced 2024-09-03 19:46:07 +02:00
66c49f0377
* Upgrade to v0.2.2 * do not specify signald version * Add support for end-to-bridge encryption (#37) (deactivated by default) * Linter and sync whatsapp_ynh (#27) * prepare for add to app list * restore signald user data folder Co-authored-by: ericgaspar <junk.eg@free.fr> * python3-dev * no python-olm * check upgrade from 0.2.0 Necessary as the group is created by the dependencies * Replace Whatsapp typos with Signal * Fix service description inconsistency in install/upgrade/restore * comment out bot_synapse_adm for now * remove hack for signald permissions * deactivate encryption by default * no encryption in manifest * fix db_pwd upgrade * Update config.yaml Co-authored-by: Nathanaël HANNEBERT <nathanael.hannebert@alterway.fr> Co-authored-by: ericgaspar <junk.eg@free.fr> Co-authored-by: Mayeul Cantan <oss@mayeul.net>
79 lines
2.5 KiB
Bash
Executable file
79 lines
2.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
source ../settings/scripts/_common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# MANAGE SCRIPT FAILURE
|
|
#=================================================
|
|
|
|
ynh_clean_setup () {
|
|
### Remove this function if there's nothing to clean before calling the remove script.
|
|
true
|
|
}
|
|
# Exit if an error occurs during the execution of the script
|
|
ynh_abort_if_errors
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
ynh_print_info --message="Loading installation settings..."
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
signald_data="/var/lib/signald"
|
|
#signald_exe="/usr/bin/signald"
|
|
|
|
#=================================================
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
|
#=================================================
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
|
|
#=================================================
|
|
# BACKUP THE APP MAIN DIR
|
|
#=================================================
|
|
|
|
ynh_backup --src_path="$final_path"
|
|
|
|
#=================================================
|
|
# SPECIFIC BACKUP
|
|
#=================================================
|
|
# BACKUP LOGROTATE
|
|
#=================================================
|
|
|
|
ynh_backup --src_path="/var/log/$app"
|
|
|
|
#=================================================
|
|
# BACKUP SYSTEMD
|
|
#=================================================
|
|
|
|
ynh_backup --src_path="/etc/systemd/system/$app.service"
|
|
#ynh_backup --src_path="/etc/systemd/system/signald.service"
|
|
|
|
#=================================================
|
|
# BACKUP VARIOUS FILES
|
|
#=================================================
|
|
|
|
ynh_backup --src_path="$signald_data"
|
|
|
|
#=================================================
|
|
# BACKUP THE POSTGRESQL DATABASE
|
|
#=================================================
|
|
ynh_print_info --message="Backing up the PostgreSQL database..."
|
|
|
|
ynh_psql_dump_db --database="$db_name" > db.sql
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|