mirror of
https://github.com/YunoHost-Apps/matomo_ynh.git
synced 2024-09-03 19:45:56 +02:00
b29a32e77d
* Upgrade to v5.1.1 (#123) (#124) * Upgrade sources - `main` v5.1.1: https://github.com/matomo-org/matomo/releases/tag/5.1.1 * Auto-update READMEs Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> * [autopatch] Automatic patch attempt for helpers 2.1 * cleaning --------- Co-authored-by: eric_G <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: Yunohost-Bot <>
35 lines
1,004 B
Bash
Executable file
35 lines
1,004 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source ../settings/scripts/_common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
ynh_print_info "Declaring files to be backed up..."
|
|
|
|
#=================================================
|
|
# BACKUP THE APP MAIN DIR
|
|
#=================================================
|
|
|
|
ynh_backup "$install_dir"
|
|
|
|
#=================================================
|
|
# SYSTEM CONFIGURATION
|
|
#=================================================
|
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
ynh_backup "/etc/php/$php_version/fpm/pool.d/$app.conf"
|
|
|
|
ynh_backup "/etc/cron.d/$app"
|
|
|
|
#=================================================
|
|
# BACKUP THE MYSQL DATABASE
|
|
#=================================================
|
|
ynh_print_info "Backing up the MySQL database..."
|
|
|
|
ynh_mysql_dump_db > db.sql
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|