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

94 lines
2.8 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
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Loading installation settings..."
2019-04-18 22:17:43 +02:00
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
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Removing the MySQL database..."
2019-04-18 22:17:43 +02:00
# 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
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Removing dependencies..."
2019-04-18 22:17:43 +02:00
# 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
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Removing app main directory..."
2019-04-18 22:17:43 +02:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Removing nginx web server configuration..."
2019-04-18 22:17:43 +02:00
# 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
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Removing cron job and aliases..."
2019-04-18 22:17:43 +02:00
ynh_secure_remove --file="/etc/cron.d/$app"
2019-05-19 18:41:09 +02:00
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:37:15 +02:00
ynh_replace_string "devnull:/dev/null" "" /etc/aliases
2019-04-13 15:11:19 +02:00
newaliases
2019-05-19 18:41:09 +02:00
#=================================================
# Remove hook for postfix conf
2019-05-19 18:41:09 +02:00
#=================================================
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
#=================================================
2020-11-01 16:49:03 +01:00
yunohost tools regen-conf postfix
2019-05-22 12:18:42 +02:00
ynh_systemd_action --service_name=nginx --action=reload
ynh_systemd_action --service_name=postfix --action=reload
2019-05-20 10:21:06 +02:00
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Removal of $app completed"