mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
43db84f4ad
Conflicts: scripts/backup scripts/restore
22 lines
468 B
Bash
22 lines
468 B
Bash
#!/bin/bash
|
|
app=jappix
|
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
set -e
|
|
|
|
app=${!#}
|
|
|
|
# Retrieve arguments
|
|
backup_dir=$1
|
|
|
|
# Retrieve old app settings
|
|
domain=$(sudo yunohost app setting "$app" domain)
|
|
|
|
# Restore sources & data
|
|
sudo cp -a "./sources" "/var/www/$app"
|
|
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
sudo cp -a $"./nginx.conf" "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
# Restart webserver
|
|
sudo service nginx reload
|