2016-12-21 18:46:36 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Note: each files and directories you've saved using the ynh_backup helper
|
|
|
|
# will be located in the current directory, regarding the last argument.
|
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
# See comments in install script
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Retrieve old app settings
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
path=$(ynh_app_setting_get $app path)
|
|
|
|
sitename=$(ynh_app_setting_get $app sitename)
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
is_public=$(ynh_app_setting_get $app is_public)
|
|
|
|
finalnginxconf=$(ynh_app_setting_get $app finalnginxconf)
|
|
|
|
finalphpconf=$(ynh_app_setting_get $app finalphpconf)
|
2016-12-22 01:44:07 +01:00
|
|
|
runninguser=$(ynh_app_setting_get $app runninguser)
|
2016-12-22 13:01:20 +01:00
|
|
|
basicauthcreate=$(ynh_app_setting_get $app basicauthcreate)
|
2016-12-21 18:46:36 +01:00
|
|
|
|
|
|
|
# Check domain/path availability
|
|
|
|
#sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
|
|
|
# || ynh_die "Path not available: ${domain}${path}"
|
|
|
|
|
2016-12-22 01:47:34 +01:00
|
|
|
# We install dependencies
|
2016-12-22 02:08:38 +01:00
|
|
|
sudo apt-get install --quiet --assume-yes php5-gd php5-sqlite php5-json php5-intl
|
2016-12-22 01:47:34 +01:00
|
|
|
|
2016-12-21 18:46:36 +01:00
|
|
|
# Restore sources & data
|
|
|
|
sudo mkdir -p $final_path
|
|
|
|
sudo cp -a ./sources/* $final_path/
|
|
|
|
|
|
|
|
# Restore permissions to app files
|
|
|
|
# you may need to make some file and/or directory writeable by www-data (nginx user)
|
2016-12-22 01:44:07 +01:00
|
|
|
sudo chown -R $runninguser:$runninguser $final_path
|
2016-12-22 13:01:20 +01:00
|
|
|
if [ "$basicauthcreate" = "Yes" ];
|
|
|
|
then
|
|
|
|
sudo chmod 600 $final_path/htpasswd
|
|
|
|
else
|
|
|
|
echo "Nothing to do"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2016-12-21 18:46:36 +01:00
|
|
|
|
|
|
|
### MySQL (remove if not used) ###
|
|
|
|
# If a MySQL database is used:
|
|
|
|
# # Create and restore the database
|
|
|
|
# dbname=$app
|
|
|
|
# dbuser=$app
|
|
|
|
# dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
|
|
|
|
# ynh_mysql_create_db "$dbname" "$dbuser" "$dbpass"
|
|
|
|
# ynh_mysql_connect_as "$dbuser" "$dbpass" "$dbname" < ./dump.sql
|
|
|
|
### MySQL end ###
|
|
|
|
|
|
|
|
# Restore NGINX configuration
|
|
|
|
sudo cp -a ./nginx.conf $finalnginxconf
|
|
|
|
|
|
|
|
### PHP (remove if not used) ###
|
|
|
|
# If a dedicated php-fpm process is used:
|
|
|
|
# # Copy PHP-FPM pool configuration and reload the service
|
|
|
|
sudo cp -a ./php-fpm.conf $finalphpconf
|
|
|
|
### PHP end ###
|
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
is_public=$(ynh_app_setting_get $app is_public)
|
|
|
|
if [ "$is_public" = "Yes" ];
|
|
|
|
then
|
|
|
|
ynh_app_setting_set $app skipped_uris "/"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Restart webserver
|
|
|
|
sudo service nginx reload
|
|
|
|
sudo service php5-fpm reload
|
|
|
|
sudo yunohost app ssowatconf
|
|
|
|
|