mirror of
https://github.com/YunoHost-Apps/radicale_ynh.git
synced 2024-09-03 20:16:14 +02:00
42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
# Récupère les infos de l'application.
|
|
ynh_version=$(sudo yunohost -v | grep "moulinette:" | cut -d' ' -f2 | cut -d'.' -f1,2)
|
|
if [ $ynh_version = "2.4" ]; then
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
else
|
|
app=radicale
|
|
fi
|
|
final_path=$(sudo yunohost app setting $app final_path)
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
infcloud=$(sudo yunohost app setting $app infcloud)
|
|
|
|
# The parameter $1 is the uncompressed restore directory location
|
|
backup_dir=$1/apps/$app
|
|
|
|
# Restore sources & data
|
|
sudo cp -a $backup_dir/sources/. $final_path
|
|
|
|
# Restore Nginx and YunoHost parameters
|
|
sudo cp -a $backup_dir/yunohost/. /etc/yunohost/apps/$app
|
|
sudo cp -a $backup_dir/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
# Restore radicale configuration
|
|
sudo cp -a $backup_dir/etc/. /etc/$app
|
|
|
|
# Copy dedicated php-fpm process to backup folder
|
|
if [ "$infcloud" = "1" ]
|
|
then
|
|
sudo cp -a /etc/php5/fpm/pool.d/$app.conf $backup_dir/php-fpm.conf
|
|
sudo cp -a /etc/php5/fpm/conf.d/20-$app.ini $backup_dir/php-fpm.ini
|
|
sudo service php5-fpm reload
|
|
fi
|
|
|
|
# Restaure la configuration de logrotate
|
|
sudo cp -a $backup_dir/logrotate /etc/logrotate.d/$app
|
|
|
|
# Restart webserver
|
|
sudo service nginx reload
|
|
|
|
# Restart uwsgi
|
|
sudo service uwsgi restart
|