2014-11-25 22:12:15 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-05-07 01:44:03 +02:00
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
|
|
set -e
|
|
|
|
|
2016-05-13 22:29:15 +02:00
|
|
|
app="jappix"
|
2016-05-07 01:44:03 +02:00
|
|
|
|
|
|
|
# Retrieve old app settings
|
|
|
|
domain=$(sudo yunohost app setting "$app" domain)
|
2014-11-25 22:12:15 +01:00
|
|
|
|
|
|
|
# Restore sources & data
|
2016-05-13 22:29:15 +02:00
|
|
|
sudo cp -a ./sources "/var/www/${app}"
|
2014-11-25 22:12:15 +01:00
|
|
|
|
2016-05-13 22:29:15 +02:00
|
|
|
# Restore Nginx and YunoHost parameters
|
|
|
|
sudo cp -a ./nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
2014-11-25 22:12:15 +01:00
|
|
|
|
2016-05-13 22:29:15 +02:00
|
|
|
# Reload services
|
2016-05-07 01:44:03 +02:00
|
|
|
sudo service nginx reload
|