2017-02-21 03:46:24 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# This restore script is adapted to Yunohost >=2.4
|
|
|
|
|
2017-02-21 04:23:47 +01:00
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
2017-02-21 03:46:24 +01:00
|
|
|
# Source app helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-03-29 19:00:53 +02:00
|
|
|
# The parameter $app is the id of the app instance ex: ynhexample__2
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-02-21 03:46:24 +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-11 00:32:17 +01:00
|
|
|
# with_mysql=$(ynh_app_setting_get "$app" with_mysql)
|
2017-02-21 03:46:24 +01:00
|
|
|
|
2017-03-09 15:01:44 +01:00
|
|
|
# Check domain/path availability
|
|
|
|
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
|
|
|
|| ynh_die "Path not available: ${domain}${path}"
|
|
|
|
|
2017-03-10 15:35:27 +01:00
|
|
|
# Check $final_path
|
|
|
|
final_path="/var/www/${app}"
|
|
|
|
if [ -d $final_path ]; then
|
|
|
|
ynh_die "There is already a directory: $final_path"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check configuration files nginx
|
2017-03-29 19:00:53 +02:00
|
|
|
nginx_conf="/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
2017-03-10 15:35:27 +01:00
|
|
|
if [ -f $nginx_conf ]; then
|
|
|
|
ynh_die "The NGINX configuration already exists at '${nginx_conf}'. You should safely delete it before restoring this app."
|
2017-03-14 17:47:35 +01:00
|
|
|
fi
|
2017-03-09 01:15:36 +01:00
|
|
|
# Check configuration files php-fpm
|
2017-03-29 19:00:53 +02:00
|
|
|
phpfpm_conf="/etc/php5/fpm/pool.d/php-fpm-${app}.conf"
|
2017-03-10 15:35:27 +01:00
|
|
|
if [ -f $phpfpm_conf ]; then
|
|
|
|
ynh_die "The PHP FPM configuration already exists at '${phpfpm_conf}'. You should safely delete it before restoring this app."
|
|
|
|
fi
|
|
|
|
|
2017-03-29 19:00:53 +02:00
|
|
|
phpfpm_ini="/etc/php5/fpm/conf.d/20-${app}.ini"
|
2017-03-10 15:35:27 +01:00
|
|
|
if [ -f $phpfpm_ini ]; then
|
|
|
|
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 01:15:36 +01:00
|
|
|
|
2017-03-14 15:27:44 +01:00
|
|
|
# Restore sources & data
|
|
|
|
sudo cp -a ./sources "${final_path}"
|
2017-03-09 16:24:19 +01:00
|
|
|
|
|
|
|
# Set permissions
|
2017-03-14 15:27:44 +01:00
|
|
|
sudo chown -R www-data: "${final_path}"
|
2017-03-09 16:24:19 +01:00
|
|
|
|
2017-03-09 15:01:44 +01:00
|
|
|
# Restore db
|
2017-03-11 00:32:17 +01:00
|
|
|
# if [[ $with_mysql -eq 1 ]]; then
|
|
|
|
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
|
|
|
|
db_user=$app
|
|
|
|
ynh_mysql_create_db $db_user $db_user $db_pwd
|
|
|
|
sudo su -c "mysql -u $db_user -p$db_pwd $app < ./db.sql"
|
|
|
|
sudo rm -f "./db.sql"
|
|
|
|
sudo sed -i "s@__DB_USER__@$db_user@g" $final_path/config/connect.php
|
|
|
|
sudo sed -i "s@__DB_PWD__@$db_pwd@g" $final_path/config/connect.php
|
|
|
|
# fi
|
2017-02-21 03:46:24 +01:00
|
|
|
|
2017-03-09 15:01:44 +01:00
|
|
|
# Restore nginx configuration files
|
2017-03-14 15:27:44 +01:00
|
|
|
sudo cp -a ./nginx.conf "${nginx_conf}"
|
2017-03-09 15:01:44 +01:00
|
|
|
# Restore php-fpm configuration files
|
2017-03-14 15:27:44 +01:00
|
|
|
sudo cp -a ./php-fpm.conf "${phpfpm_conf}"
|
|
|
|
sudo cp -a ./php-fpm.ini "${phpfpm_ini}"
|
2017-02-21 03:46:24 +01:00
|
|
|
|
2017-04-03 14:34:39 +02:00
|
|
|
# Set ssowat config
|
|
|
|
if [ "$is_public" = "No" ];
|
|
|
|
then
|
|
|
|
ynh_app_setting_delete $app skipped_uris
|
|
|
|
fi
|
|
|
|
|
2017-03-09 01:15:36 +01:00
|
|
|
# Reload services
|
2017-03-26 16:26:55 +02:00
|
|
|
sudo systemctl reload php5-fpm
|
|
|
|
sudo systemctl reload nginx
|
2017-03-29 19:00:53 +02:00
|
|
|
sudo yunohost app ssowatconf
|