garage_ynh/scripts/backup

78 lines
2.2 KiB
Plaintext
Raw Normal View History

2014-11-04 08:47:50 +00:00
#!/bin/bash
2017-06-02 16:28:20 +00:00
#=================================================
2017-06-17 21:19:48 +00:00
# GENERIC START
2017-06-02 16:28:20 +00:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2014-11-04 08:47:50 +00:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2014-11-04 08:47:50 +00:00
2017-09-05 15:48:23 +00:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2018-06-28 20:05:35 +00:00
ynh_clean_setup () {
### Remove this function if there's nothing to clean before calling the remove script.
true
}
2017-09-05 15:48:23 +00:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-06-02 16:28:20 +00:00
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
final_path=$(ynh_app_setting_get $app final_path)
domain=$(ynh_app_setting_get $app domain)
db_name=$(ynh_app_setting_get $app db_name)
#=================================================
# STANDARD BACKUP STEPS
#=================================================
2017-06-17 21:19:48 +00:00
# BACKUP THE APP MAIN DIR
2017-06-02 16:28:20 +00:00
#=================================================
2017-08-28 21:55:51 +00:00
ynh_backup "$final_path"
2017-06-02 16:28:20 +00:00
#=================================================
2017-06-17 21:19:48 +00:00
# BACKUP THE NGINX CONFIGURATION
2017-06-02 16:28:20 +00:00
#=================================================
2017-08-28 21:55:51 +00:00
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
2017-06-02 16:28:20 +00:00
#=================================================
2017-06-17 21:19:48 +00:00
# BACKUP THE PHP-FPM CONFIGURATION
2017-06-02 16:28:20 +00:00
#=================================================
2017-08-28 21:55:51 +00:00
ynh_backup "/etc/php5/fpm/pool.d/$app.conf"
2017-06-02 16:28:20 +00:00
#=================================================
2017-06-17 21:19:48 +00:00
# BACKUP THE MYSQL DATABASE
2017-06-02 16:28:20 +00:00
#=================================================
ynh_mysql_dump_db "$db_name" > db.sql
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP LOGROTATE
#=================================================
2017-08-28 21:55:51 +00:00
ynh_backup "/etc/logrotate.d/$app"
2017-06-02 16:28:20 +00:00
#=================================================
# BACKUP SYSTEMD
#=================================================
2017-08-28 21:55:51 +00:00
ynh_backup "/etc/systemd/system/$app.service"
2017-06-02 16:28:20 +00:00
#=================================================
2018-06-28 20:05:35 +00:00
# BACKUP A CRON FILE
2017-06-02 16:28:20 +00:00
#=================================================
2017-08-28 21:55:51 +00:00
ynh_backup "/etc/cron.d/$app"