1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/spip_ynh.git synced 2024-09-03 20:25:59 +02:00
spip_ynh/scripts/backup

27 lines
744 B
Text
Raw Normal View History

2017-02-21 03:46:24 +01:00
#!/bin/bash
2017-02-21 04:02:03 +01:00
# Exit on command errors and treat unset variables as an error
set -eu
2017-02-21 03:46:24 +01:00
# Source app helpers
source /usr/share/yunohost/helpers
2017-03-29 19:00:53 +02:00
# Get multi-instances specific variables
app=$YNH_APP_INSTANCE_NAME
2017-03-09 01:15:36 +01:00
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
2017-02-21 03:46:24 +01:00
# Copy the app files
2017-03-09 15:01:44 +01:00
final_path="/var/www/${app}"
ynh_backup "$final_path" "sources" 1
2017-02-21 03:46:24 +01:00
2017-03-09 15:01:44 +01:00
# Copy the nginx conf files
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"
# Copy the php-fpm conf files
ynh_backup "/etc/php5/fpm/pool.d/${app}.conf" "php-fpm.conf"
ynh_backup "/etc/php5/fpm/conf.d/20-${app}.ini" "php-fpm.ini"
2017-02-21 03:46:24 +01:00
# Backup db
2017-03-14 19:11:30 +01:00
root_pwd=$(sudo cat /etc/yunohost/mysql)
sudo su -c "mysqldump -u root -p$root_pwd --no-create-db $app > ./db.sql"