2015-11-18 00:28:42 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Récupère les infos de l'application.
|
|
|
|
app=lutim
|
|
|
|
final_path=$(sudo yunohost app setting $app final_path)
|
|
|
|
domain=$(sudo yunohost app setting $app domain)
|
2016-03-31 22:41:54 +02:00
|
|
|
codename=$(sudo yunohost app setting $app codename)
|
2015-11-18 00:28:42 +01:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
2016-03-31 22:41:54 +02:00
|
|
|
if [ "$codename" = "wheezy" ]
|
|
|
|
then
|
|
|
|
# Restauration des fichiers du script init
|
|
|
|
sudo cp -a $backup_dir/init.d_lutim /etc/init.d/lutim
|
|
|
|
sudo cp -a $backup_dir/default_lutim /etc/default/lutim
|
|
|
|
else
|
|
|
|
# Restauration des fichiers du script systemd
|
|
|
|
sudo cp -a $backup_dir/lutim.service /etc/systemd/system/lutim.service
|
|
|
|
fi
|
2015-11-18 00:28:42 +01:00
|
|
|
|
|
|
|
# Restauration du fichier du cron
|
|
|
|
sudo cp -a $backup_dir/cron_$app /etc/cron.d/$app
|
|
|
|
|
|
|
|
|
|
|
|
# Restart webserver
|
|
|
|
sudo service nginx reload
|