1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/sogo_ynh.git synced 2024-09-03 20:26:07 +02:00
sogo_ynh/scripts/upgrade

142 lines
4 KiB
Text
Raw Normal View History

2016-03-18 18:38:54 +01:00
#!/bin/bash
2018-08-14 22:18:22 +02:00
#=================================================
# GENERIC START
#=================================================
2016-03-18 18:38:54 +01:00
2020-11-17 23:55:57 +01:00
# Import common cmd
source ./experimental_helper.sh
source ./_common.sh
2018-08-14 22:18:22 +02:00
# IMPORT GENERIC HELPERS
source /usr/share/yunohost/helpers
2016-03-18 18:38:54 +01:00
2018-08-14 22:18:22 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2016-03-18 18:38:54 +01:00
ynh_script_progression --message="Loading installation settings..."
2018-08-14 22:18:22 +02:00
# LOAD SETTINGS
domain=$(ynh_app_setting_get --app $app --key domain)
path_url=$(ynh_normalize_url_path --path_url $(ynh_app_setting_get --app $app --key path))
admin=$(ynh_app_setting_get --app $app --key admin)
is_public=$(ynh_app_setting_get --app $app --key is_public)
port=$(ynh_app_setting_get --app $app --key web_port)
smtp_port=$(ynh_app_setting_get --app $app --key smtp_port)
db_name=$(ynh_app_setting_get --app $app --key db_name)
db_user=$(ynh_app_setting_get --app $app --key db_user)
db_pwd=$(ynh_app_setting_get --app $app --key mysqlpwd)
2018-08-14 22:18:22 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# UPGRADE SETTINGS FROM OLD INSTALL
#=================================================
ynh_script_progression --message="Fixing old settings..." --weight=1
2018-08-14 22:18:22 +02:00
if [[ ${is_public,,*} = "yes" ]]
2016-03-18 18:38:54 +01:00
then
2018-08-14 22:18:22 +02:00
is_public=1
ynh_app_setting_set --app $app --key is_public --value 1
2016-03-18 18:38:54 +01:00
fi
2018-08-14 22:18:22 +02:00
if [[ ${is_public,,*} = "no" ]]
then
is_public=0
ynh_app_setting_set --app $app --key is_public --value 0
2018-08-14 22:18:22 +02:00
fi
2016-05-24 21:43:29 +02:00
2018-08-14 22:18:22 +02:00
if [[ -z $port ]]
then
# Find a port for SOGo
port=$(ynh_find_port --port 20000)
ynh_app_setting_set --app $app --key web_port --value $port
2018-08-14 22:18:22 +02:00
fi
2016-05-24 21:43:29 +02:00
2018-08-14 22:18:22 +02:00
if [[ -z $db_name ]]
then
db_name=$app
ynh_app_setting_set --app $app --key db_name --value $db_name
2018-08-14 22:18:22 +02:00
fi
if [[ -z $db_user ]]
then
db_user=$app
ynh_app_setting_set --app $app --key db_user --value $db_user
2018-08-14 22:18:22 +02:00
fi
# Manage migration form SOGo 3.x to SOGo 4.x (Debian stretch -> Buster)
ynh_script_progression --message="Migrating database if needed..."
# FIXME use the new way to manage version when available on the core
app_previous_version="$(jq -r .version /etc/yunohost/apps/$app/manifest.json | cut -d~ -f1)"
if [[ "$app_previous_version" == 3.2.* ]]; then
ynh_replace_string --match_string __APP__ --replace_string $app --target_file migrations/3.2-4.0.sh
ynh_replace_string --match_string __DBUSER__ --replace_string $db_user --target_file migrations/3.2-4.0.sh
ynh_replace_string --match_string __DBPASS__ --replace_string $db_pwd --target_file migrations/3.2-4.0.sh
bash migrations/3.2-4.0.sh
fi
2018-08-14 22:18:22 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# INSTALL DEPENDENCIES
ynh_script_progression --message="Upgrading dependencies..."
2018-08-14 22:18:22 +02:00
install_dependance
ynh_script_progression --message="Configuring application..."
2018-08-14 22:18:22 +02:00
# Configure SOGO
config_sogo
# Configure stunnel
config_stunnel
# Install crontab
config_cron
#Configure Nginx
config_nginx
2016-03-18 18:38:54 +01:00
2018-08-14 22:18:22 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
ynh_script_progression --message="Protecting directory..."
2018-08-14 22:18:22 +02:00
set_permission
# configure the sso
ynh_script_progression --message="Configuring permissions..."
2018-08-14 22:18:22 +02:00
if [ "$is_public" = "0" ];
then # Retire l'accès public
ynh_app_setting_delete --app $app --key skipped_uris
2018-08-14 22:18:22 +02:00
else
ynh_app_setting_set --app $app --key unprotected_uris --value "/"
2018-08-14 22:18:22 +02:00
fi
python3 add_sso_conf.py
2018-08-14 22:18:22 +02:00
# SETUP LOGROTATE
ynh_script_progression --message="Configuring log rotation..."
2019-11-04 20:27:16 +01:00
ynh_use_logrotate --logfile /var/log/$app/sogo.log --nonappend
2018-08-14 22:18:22 +02:00
2020-05-24 00:32:03 +02:00
# Register service
yunohost service add $app --log "/var/log/$app/sogo.log"
2018-08-14 22:18:22 +02:00
# Restart services
ynh_script_progression --message="Starting SOGo services..." --weight=3
2018-08-14 22:18:22 +02:00
systemctl restart sogo
systemctl restart stunnel4
ynh_script_progression --message="Upgrade of $app completed" --last