2017-03-02 15:44:54 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# This restore script is adapted to Yunohost >=2.4
|
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
# Source app helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-03-29 19:25:52 +02:00
|
|
|
# The parameter $app is the id of the app instance ex: ynhexample__2
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-03-02 15:44:54 +01:00
|
|
|
# Get old parameter of the app
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path=$(ynh_app_setting_get $app path)
|
|
|
|
is_public=$(ynh_app_setting_get $app is_public)
|
|
|
|
|
2017-03-09 17:27:59 +01:00
|
|
|
# Check domain/path availability
|
2017-03-14 13:20:08 +01:00
|
|
|
sudo yunohost app checkurl "${domain}${path}" -a "${app}" \
|
2017-03-09 17:27:59 +01:00
|
|
|
|| ynh_die "Path not available: ${domain}${path}"
|
|
|
|
|
2017-03-10 16:59:58 +01:00
|
|
|
# Check $final_path
|
|
|
|
final_path="/var/www/${app}"
|
2017-03-14 17:28:36 +01:00
|
|
|
if [ -d "${final_path}" ]; then
|
2017-03-14 13:20:08 +01:00
|
|
|
ynh_die "There is already a directory: ${final_path}"
|
2017-03-10 16:59:58 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Check configuration files nginx
|
2017-03-14 15:38:38 +01:00
|
|
|
nginx_conf="/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
2017-03-14 15:45:05 +01:00
|
|
|
if [ -f "${nginx_conf}" ]; then
|
2017-03-10 16:59:58 +01:00
|
|
|
ynh_die "The NGINX configuration already exists at '${nginx_conf}'. You should safely delete it before restoring this app."
|
2017-03-14 17:28:36 +01:00
|
|
|
fi
|
2017-03-10 16:59:58 +01:00
|
|
|
|
|
|
|
# Check configuration files php-fpm
|
2017-03-14 15:38:38 +01:00
|
|
|
phpfpm_conf="/etc/php5/fpm/pool.d/${app}.conf"
|
2017-03-14 15:45:05 +01:00
|
|
|
if [ -f "${phpfpm_conf}" ]; then
|
2017-03-10 16:59:58 +01:00
|
|
|
ynh_die "The PHP FPM configuration already exists at '${phpfpm_conf}'. You should safely delete it before restoring this app."
|
|
|
|
fi
|
|
|
|
|
2017-03-14 15:38:38 +01:00
|
|
|
phpfpm_ini="/etc/php5/fpm/conf.d/20-${app}.ini"
|
2017-03-14 15:45:05 +01:00
|
|
|
if [ -f "${phpfpm_ini}" ]; then
|
2017-03-10 16:59:58 +01:00
|
|
|
ynh_die "The PHP FPM INI configuration already exists at '${phpfpm_ini}'. You should safely delete it before restoring this app."
|
|
|
|
fi
|
2017-03-09 17:27:59 +01:00
|
|
|
|
|
|
|
# Restore sources & data
|
2017-03-14 13:20:08 +01:00
|
|
|
sudo cp -a ./sources "${final_path}"
|
2017-03-02 15:44:54 +01:00
|
|
|
|
|
|
|
# Set permissions
|
2017-03-14 13:20:08 +01:00
|
|
|
sudo chown -R www-data: "${final_path}"
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2017-03-09 17:27:59 +01:00
|
|
|
# Restore nginx configuration files
|
2017-03-14 13:20:08 +01:00
|
|
|
sudo cp -a ./nginx.conf "${nginx_conf}"
|
2017-03-09 17:27:59 +01:00
|
|
|
# Restore php-fpm configuration files
|
2017-03-14 13:20:08 +01:00
|
|
|
sudo cp -a ./php-fpm.conf "${phpfpm_conf}"
|
|
|
|
sudo cp -a ./php-fpm.ini "${phpfpm_ini}"
|
2017-03-09 17:27:59 +01:00
|
|
|
|
|
|
|
# Reload services
|
2017-03-26 16:29:13 +02:00
|
|
|
sudo systemctl reload php5-fpm
|
|
|
|
sudo systemctl reload nginx
|
2017-03-11 12:36:13 +01:00
|
|
|
sudo yunohost app ssowatconf
|