1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/emailpoubelle_ynh.git synced 2024-09-03 18:26:29 +02:00
emailpoubelle_ynh/scripts/remove

97 lines
2.7 KiB
Text
Raw Normal View History

2018-11-18 16:00:35 +01:00
#!/bin/bash
2019-04-18 22:17:43 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2018-11-21 00:22:08 +01:00
source _common.sh
source /usr/share/yunohost/helpers
2019-04-18 22:17:43 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
ynh_print_info --message="Loading installation settings..."
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
#=================================================
# REMOVE THE MYSQL DATABASE
#=================================================
ynh_print_info --message="Removing the MySQL database"
# Remove a database if it exists, along with the associated user
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
2018-11-21 00:22:08 +01:00
2019-04-18 22:17:43 +02:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_print_info --message="Removing dependencies"
# Remove metapackage and its dependencies
2018-11-24 11:14:21 +01:00
ynh_remove_app_dependencies
2019-04-18 22:17:43 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
ynh_print_info --message="Removing app main directory"
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_print_info --message="Removing nginx web server configuration"
# Remove the dedicated nginx config
2019-04-13 15:11:19 +02:00
ynh_remove_nginx_config
2019-04-18 22:17:43 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE CRON FILE
#=================================================
# Remove a cron file
ynh_secure_remove --file="/etc/cron.d/$app"
sleep 1s
2019-04-18 22:17:43 +02:00
#=================================================
2018-11-18 16:00:35 +01:00
#removing aliases
2019-04-18 22:17:43 +02:00
#=================================================
2019-05-19 18:26:34 +02:00
ynh_replace_string "/devnull:\/dev\/null/d" "" /etc/aliases
sleep 1s
2019-04-13 15:11:19 +02:00
newaliases
sleep 1s
# Remove hook for postfix conf
ynh_secure_remove "/usr/share/yunohost/hooks/conf_regen/98-postfix_emailpoubelle"
2018-11-25 16:40:00 +01:00
2019-04-18 22:17:43 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
ynh_print_info --message="Removing the dedicated system user"
# Delete a system user
ynh_system_user_delete --username=$app
2019-03-05 22:43:49 +01:00
yunohost service regen-conf postfix
2019-04-13 15:11:19 +02:00
service nginx reload
yunohost app ssowatconf