mirror of
https://github.com/YunoHost-Apps/grav_ynh.git
synced 2024-09-03 19:16:01 +02:00
28 lines
831 B
Bash
28 lines
831 B
Bash
#!/bin/bash
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
set -eu
|
|
|
|
# The parameter $1 is the backup directory location dedicated to the app
|
|
backup_dir=$1
|
|
|
|
# The parameter $2 is theid of the app instance
|
|
app=$2
|
|
|
|
# Source app helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
# Copy the app files
|
|
sudo mkdir -p ${backup_dir}/var/www
|
|
sudo cp -a $final_path "${backup_dir}/var/www/$app"
|
|
|
|
# Copy the conf files
|
|
sudo mkdir -p "${backup_dir}/conf"
|
|
sudo cp -a /etc/nginx/conf.d/$domain.d/$app.conf "${backup_dir}/conf/nginx.conf"
|
|
|
|
# Copy dedicated php-fpm process to backup folder
|
|
sudo cp -a /etc/php5/fpm/pool.d/$app.conf "${backup_dir}/conf/php-fpm.conf"
|
|
sudo cp -a /etc/php5/fpm/conf.d/20-$app.ini "${backup_dir}/conf/php-fpm.ini"
|