[fix] Remove old parts from backup/restore and use relative path

This commit is contained in:
Jérôme Lebleu 2016-04-30 23:50:23 +02:00
parent e926de87ae
commit c75e25434a
2 changed files with 14 additions and 16 deletions

View file

@ -11,18 +11,17 @@ app=${!#}
backup_dir=$1 backup_dir=$1
# Backup sources & data # Backup sources & data
sudo cp -a /var/www/$app/. $backup_dir/sources sudo cp -a "/var/www/${app}" ./sources
# Backup mysql database if needed # Backup mysql database if needed
# db_pwd=$(sudo yunohost app setting $app mysqlpwd) # db_pwd=$(sudo yunohost app setting $app mysqlpwd)
# sudo mysqldump -u $app -p$db_pwd $app > $backup_dir/$app.dmp # sudo mysqldump -u $app -p$db_pwd $app > ./dump.sql
# Copy Nginx and YunoHost parameters to make the script "standalone" # Copy NGINX configuration
sudo cp -a /etc/yunohost/apps/$app/. $backup_dir/yunohost domain=$(sudo yunohost app setting "$app" domain)
domain=$(sudo yunohost app setting $app domain) sudo cp -a "/etc/nginx/conf.d/${domain}.d/${app}.conf" ./nginx.conf
sudo cp -a /etc/nginx/conf.d/$domain.d/$app.conf $backup_dir/nginx.conf
# If a dedicated php-fpm process is used : # If a dedicated php-fpm process is used :
# Copy dedicated php-fpm process to backup folder # Copy dedicated php-fpm process to backup folder
# #
#sudo cp -a /etc/php5/fpm/pool.d/$app.conf $backup_dir/php-fpm.conf #sudo cp -a "/etc/php5/fpm/pool.d/${app}.conf" ./php-fpm.conf

View file

@ -11,27 +11,26 @@ app=${!#}
backup_dir=$1 backup_dir=$1
# Restore sources & data # Restore sources & data
final_path=/var/www/$app final_path="/var/www/${app}"
sudo cp -a $backup_dir/sources/. $final_path sudo cp -a ./sources "$final_path"
# Restore permissions to app files # Restore permissions to app files
# you may need to make some file and/or directory writeable by www-data (nginx user) # you may need to make some file and/or directory writeable by www-data (nginx user)
sudo chown -R root:root $final_path sudo chown -R root:root "$final_path"
# Restore mysql database if needed # Restore mysql database if needed
# db_pwd=$(sudo yunohost app setting $app mysqlpwd) # db_pwd=$(sudo yunohost app setting $app mysqlpwd)
# sudo mysql -u $app -p$db_pwd $app < $backup_dir/$app.dmp # sudo mysql -u $app -p$db_pwd $app < ./dump.sql
# Restore Nginx and YunoHost parameters # Restore NGINX configuration
sudo cp -a $backup_dir/yunohost/. /etc/yunohost/apps/$app domain=$(sudo yunohost app setting "$app" domain)
domain=$(sudo yunohost app setting $app domain) sudo cp -a ./nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
sudo cp -a $backup_dir/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
# If a dedicated php-fpm process is used : # If a dedicated php-fpm process is used :
# Copy dedicated php-fpm process from backup folder to the right location # Copy dedicated php-fpm process from backup folder to the right location
# And restart service # And restart service
# #
#sudo cp -a $backup_dir/php-fpm.conf /etc/php5/fpm/pool.d/$app.conf #sudo cp -a ./php-fpm.conf "/etc/php5/fpm/pool.d/${app}.conf"
#sudo service php5-fpm reload #sudo service php5-fpm reload
# Restart webserver # Restart webserver