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
|
2016-12-23 21:24:09 +01:00
|
|
|
#set -eu
|
2016-12-21 18:46:36 +01:00
|
|
|
|
2016-12-23 21:24:09 +01:00
|
|
|
#TRAP_ON () { # Activate signal capture
|
|
|
|
# trap EXIT_PROPERLY ERR # Capturing ex it signals on error
|
|
|
|
#}
|
2016-12-23 13:58:36 +01:00
|
|
|
|
2016-12-22 14:20:20 +01:00
|
|
|
# Active trap pour arrêter le script si une erreur est détectée.
|
2016-12-23 21:24:09 +01:00
|
|
|
#TRAP_ON
|
2016-12-22 14:20:20 +01:00
|
|
|
|
2016-12-21 18:46:36 +01:00
|
|
|
# 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)
|
|
|
|
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
|
|
|
|
2016-12-22 01:47:34 +01:00
|
|
|
# We install dependencies
|
2017-02-24 14:43:49 +01:00
|
|
|
#sudo apt-get update -y
|
|
|
|
#sudo apt-get install php5-gd php5-sqlite php5-json php5-intl -y
|
|
|
|
|
|
|
|
# Install dependencies using Helpers
|
2017-02-24 15:32:26 +01:00
|
|
|
#ynh_package_install_from_equivs ../conf/cops-deps.control \
|
|
|
|
#|| ynh_die "Unable to install dependencies"
|
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/
|
|
|
|
|
2017-02-24 17:06:06 +01:00
|
|
|
# Create cops user and join nextcloud/owncloud/www-data groups
|
|
|
|
runninguser="${app}-ynh"
|
|
|
|
# 1. Create the user
|
|
|
|
# Create a system account for COPS
|
|
|
|
sudo useradd -c "$runninguser system account" \
|
|
|
|
-d $final_path --system --user-group $runninguser \
|
|
|
|
|| ynh_die "Unable to create $runninguser system account"
|
|
|
|
ynh_app_setting_set "$app" runninguser "$runninguser"
|
|
|
|
|
|
|
|
# 2. Add cops-ynh to groups www-data and nextcloud/owncloud if they exist
|
|
|
|
sudo usermod -a -G www-data $runninguser
|
|
|
|
for filesharing in "nextcloud" "owncloud"; do
|
|
|
|
app_id=$(sudo yunohost app list --installed -f "$filesharing" \
|
|
|
|
--output-as json | grep -Po '"id":[ ]?"\K.*?(?=")' | head -1)
|
|
|
|
[[ -z "$app_id" ]] || {
|
|
|
|
sudo usermod -a -G $filesharing $runninguser
|
|
|
|
}
|
|
|
|
done
|
|
|
|
|
2016-12-21 18:46:36 +01:00
|
|
|
# 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:47:17 +01:00
|
|
|
|
2016-12-22 13:01:20 +01:00
|
|
|
if [ "$basicauthcreate" = "Yes" ];
|
|
|
|
then
|
2016-12-22 13:47:17 +01:00
|
|
|
sudo chmod 440 $final_path/htpasswd
|
|
|
|
sudo chown www-data:www-data $final_path/htpasswd
|
2016-12-22 13:01:20 +01:00
|
|
|
else
|
|
|
|
echo "Nothing to do"
|
|
|
|
fi
|
|
|
|
|
2016-12-21 18:46:36 +01:00
|
|
|
# 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 "/"
|
2016-12-24 11:10:00 +01:00
|
|
|
else
|
|
|
|
ynh_app_setting_set $app protected_uris "/"
|
2016-12-21 18:46:36 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Restart webserver
|
|
|
|
sudo service nginx reload
|
|
|
|
sudo service php5-fpm reload
|
|
|
|
sudo yunohost app ssowatconf
|
|
|
|
|