mirror of
https://github.com/YunoHost-Apps/laverna_ynh.git
synced 2024-09-03 19:36:06 +02:00
[fix] Remove old parts from backup/restore and use relative path
This commit is contained in:
parent
e926de87ae
commit
c75e25434a
2 changed files with 14 additions and 16 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue