2017-09-13 14:49:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-03-10 08:20:59 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-09-13 14:49:10 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-10-07 14:01:04 +02:00
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-30 20:51:22 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --time --weight=1
|
|
|
|
|
2017-09-13 14:49:10 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-10-04 15:22:54 +02:00
|
|
|
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)
|
2017-09-13 14:49:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
2019-05-30 20:51:22 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Stopping systemd services..." --time --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name="$app" --action="stop"
|
|
|
|
ynh_systemd_action --service_name="$app-celery" --action="stop"
|
|
|
|
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-30 20:51:22 +02:00
|
|
|
ynh_script_progression --message="Backing up the main app directory..." --time --weight=1
|
|
|
|
|
2017-09-25 17:09:44 +02:00
|
|
|
ynh_backup "$final_path"
|
2017-09-13 14:49:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-30 20:51:22 +02:00
|
|
|
ynh_script_progression --message="Backing up nginx web server configuration..." --time --weight=1
|
|
|
|
|
2017-09-25 17:09:44 +02:00
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-09-13 14:49:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
2017-09-19 10:53:37 +02:00
|
|
|
# BACKUP THE PostgreSQL DATABASE
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
|
2019-05-30 20:51:22 +02:00
|
|
|
ynh_script_progression --message="Backing up the PostgreSQL database..." --time --weight=1
|
|
|
|
|
2017-09-19 10:53:37 +02:00
|
|
|
ynh_psql_dump_db "$db_name" > db.sql
|
2017-09-25 17:09:44 +02:00
|
|
|
ynh_backup "db.sql"
|
2017-09-13 14:49:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
2019-08-23 08:32:02 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Backing up logrotate configuration..." --time --weight=1
|
|
|
|
|
|
|
|
ynh_backup --src_path="/etc/logrotate.d/$app"
|
|
|
|
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE CRON FILE
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-30 20:51:22 +02:00
|
|
|
ynh_script_progression --message="Backing up systemd configuration..." --time --weight=1
|
|
|
|
|
2017-09-25 17:09:44 +02:00
|
|
|
ynh_backup "/etc/cron.d/$app"
|
2017-11-21 15:31:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE uwsgi files
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-30 20:51:22 +02:00
|
|
|
ynh_script_progression --message="Backing up uwsgi configuration..." --time --weight=1
|
|
|
|
|
2017-11-21 15:31:11 +01:00
|
|
|
ynh_backup "/etc/uwsgi/apps-available/$app.ini"
|
2019-03-10 21:57:52 +01:00
|
|
|
ynh_backup "/etc/systemd/system/$app.service"
|
2018-10-25 08:01:46 +02:00
|
|
|
ynh_backup "/etc/systemd/system/$app-celery.service"
|
2017-12-29 08:43:56 +01:00
|
|
|
|
2019-05-30 20:51:22 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE celery files
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# nothing to do because it is inside $finalpath
|
|
|
|
|
2017-12-29 08:43:56 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE hub binary file
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-30 20:51:22 +02:00
|
|
|
ynh_script_progression --message="Backing up uwsgi configuration..." --time --weight=1
|
|
|
|
|
2017-12-29 08:43:56 +01:00
|
|
|
ynh_backup /usr/bin/hub
|
2019-05-30 20:51:22 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Starting systemd services..." --time --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name="$app" --action="start"
|
|
|
|
ynh_systemd_action --service_name="$app-celery" --action="start"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --time --last
|