mirror of
https://github.com/YunoHost-Apps/bozon_ynh.git
synced 2024-09-03 18:16:09 +02:00
24 lines
654 B
Bash
24 lines
654 B
Bash
#! /bin/bash
|
|
|
|
# definie useful vars
|
|
app=bozon
|
|
parent_path=/var/www
|
|
final_path=$parent_path/$app
|
|
|
|
#retrieve arguments
|
|
save_path=$1
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
|
|
# move the backup
|
|
sudo mv $save_path/$app $final_path
|
|
|
|
# restore permissions
|
|
sudo chown -R root: $final_path
|
|
sudo find $final_path -type f | xargs sudo chmod 644
|
|
sudo find $final_path -type d | xargs sudo chmod 755
|
|
sudo chown -R www-data: $final_path/private
|
|
sudo chown -R www-data: $final_path/uploads
|
|
sudo chown -R www-data: $final_path/thumbs
|
|
|
|
sudo cp -a $save_path/yunohost /etc/yunohost/apps/$app/.
|
|
sudo cp -a $save_path/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|