2016-04-29 16:32:48 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-07-18 13:03:45 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
source _common.sh
|
2017-07-18 13:03:45 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2023-02-16 10:07:14 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2017-07-18 13:03:45 +02:00
|
|
|
|
2023-02-16 10:07:14 +01:00
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
db_user=$db_name
|
2016-04-29 16:32:48 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2023-08-27 07:48:19 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2023-08-27 07:48:19 +02:00
|
|
|
# REMOVE SYSTEMD SERVICE
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2023-08-27 07:48:19 +02:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2021-06-30 17:01:55 +02:00
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
|
|
|
then
|
2022-06-27 02:49:41 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=1
|
2021-06-30 17:01:55 +02:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
2017-07-19 13:32:24 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2021-11-13 23:17:56 +01:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2023-03-30 16:05:39 +02:00
|
|
|
if [ -d "/tmp/ufs" ]; then
|
|
|
|
ynh_secure_remove --file="/tmp/ufs"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove the dedicated NGINX config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_nodejs
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MONGODB DATABASE
|
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Removing the MongoDB database..." --weight=11
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2022-07-12 09:33:07 +02:00
|
|
|
ynh_replace_string --match_string="engine: wiredTiger" --replace_string="# engine:" --target_file="/etc/mongod.conf"
|
|
|
|
ynh_replace_string --match_string="replication:" --replace_string="#replication:" --target_file="/etc/mongod.conf"
|
|
|
|
ynh_replace_string --match_string=" replSetName: rs01" --replace_string="" --target_file="/etc/mongod.conf"
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2022-07-12 09:33:07 +02:00
|
|
|
ynh_systemd_action --service_name=mongod --action=restart --log_path=/var/log/mongodb/mongod.log --line_match="Waiting for connections"
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
# Remove a database if it exists, along with the associated user
|
|
|
|
ynh_mongo_remove_db --db_user=$db_user --db_name=$db_name
|
|
|
|
|
2023-08-27 23:30:03 +02:00
|
|
|
# Remove mongod service
|
|
|
|
yunohost service remove mongod
|
|
|
|
ynh_secure_remove --file="/var/lib/mongodb"
|
2022-06-26 20:30:44 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-07-21 14:35:08 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|