mirror of
https://github.com/YunoHost-Apps/sogo_ynh.git
synced 2024-09-03 20:26:07 +02:00
57 lines
1.6 KiB
Bash
Executable file
57 lines
1.6 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
|
|
# Stop script if errors
|
|
set -u
|
|
|
|
# Import common cmd
|
|
source ./experimental_helper.sh
|
|
source ./_common.sh
|
|
|
|
# Source YunoHost helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
|
|
|
# Retrieve app settings
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
domain=$(ynh_app_setting_get --app $app --key domain)
|
|
port=$(ynh_app_setting_get --app $app --key port)
|
|
db_name=$(ynh_app_setting_get --app $app --key db_name)
|
|
db_user=$(ynh_app_setting_get --app $app --key db_user)
|
|
final_path=$(ynh_app_setting_get --app $app --key final_path)
|
|
|
|
#=================================================
|
|
# STANDARD REMOVE
|
|
#=================================================
|
|
|
|
# Remove metapackage and its dependencies
|
|
ynh_script_progression --message="Removing dependencies" --weight=10
|
|
ynh_remove_app_dependencies
|
|
|
|
# Remove a database if it exists, along with the associated user
|
|
ynh_script_progression --message="Removing databases..."
|
|
ynh_mysql_remove_db --db_user $db_user --db_name $db_name
|
|
|
|
# Remove the app directory securely
|
|
ynh_script_progression --message="Removing user data..."
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
ynh_script_progression --message="Removing configuration..."
|
|
|
|
# Remove sogo config
|
|
ynh_secure_remove --file="/etc/$app"
|
|
|
|
# Remove stunnel config
|
|
ynh_secure_remove --file="/etc/stunnel/$app.conf"
|
|
|
|
# Remove service
|
|
yunohost service remove $app
|
|
|
|
# Remove the app-specific logrotate config
|
|
ynh_remove_logrotate
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|