2015-08-20 15:06:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# DotClear 2 restore script for YunoHost
|
|
|
|
|
|
|
|
app=dotclear2
|
|
|
|
|
|
|
|
# The parameter $1 is the uncompressed restore directory location
|
|
|
|
backup_dir=$1/apps/$app
|
|
|
|
|
2015-08-21 13:28:41 +02:00
|
|
|
# Restore sources
|
2015-08-20 15:06:37 +02:00
|
|
|
sudo cp -a $backup_dir/sources/. /var/www/$app
|
|
|
|
|
2015-08-21 13:28:41 +02:00
|
|
|
# Restore database
|
2015-08-21 15:33:45 +02:00
|
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
2015-08-21 16:16:02 +02:00
|
|
|
mysql -u root -p$root_pwd -e "DROP DATABASE $app ; DROP USER $app@localhost ;"
|
2015-08-21 13:28:41 +02:00
|
|
|
db_password=$(sudo yunohost app setting $app db_password)
|
|
|
|
sudo yunohost app initdb $app -p "$db_password" -s $backup_dir/dump.sql
|
|
|
|
|
2015-08-20 15:06:37 +02:00
|
|
|
# Restore Nginx and YunoHost parameters
|
|
|
|
sudo cp -a $backup_dir/yunohost/. /etc/yunohost/apps/$app
|
|
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
|
|
sudo cp -a $backup_dir/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
|
|
|
|
# Restart webserver
|
2015-08-21 16:34:13 +02:00
|
|
|
sudo /etc/init.d/nginx reload
|