1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00
weblate_ynh/scripts/backup

117 lines
3.8 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-03-10 08:20:59 +01:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2017-10-07 14:01:04 +02:00
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-30 20:51:22 +02:00
ynh_script_progression --message="Loading installation settings..." --time --weight=1
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)
#=================================================
# 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"
#=================================================
# 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
ynh_backup "$final_path"
#=================================================
# 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
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
2017-09-19 10:53:37 +02:00
# BACKUP THE PostgreSQL DATABASE
#=================================================
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
ynh_backup "db.sql"
#=================================================
# 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"
#=================================================
# BACKUP THE CRON FILE
#=================================================
2019-05-30 20:51:22 +02:00
ynh_script_progression --message="Backing up systemd configuration..." --time --weight=1
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"
2019-05-30 20:51:22 +02:00
#=================================================
# BACKUP THE celery files
#=================================================
# nothing to do because it is inside $finalpath
#=================================================
# BACKUP THE hub binary file
#=================================================
2019-05-30 20:51:22 +02:00
ynh_script_progression --message="Backing up uwsgi configuration..." --time --weight=1
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