1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/rocketchat_ynh.git synced 2024-09-03 20:16:25 +02:00
rocketchat_ynh/scripts/remove

68 lines
2.1 KiB
Text
Raw Normal View History

2016-04-29 16:32:48 +02:00
#!/bin/bash
source _common.sh
2017-07-18 13:03:45 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Loading installation settings..."
2017-07-18 13:03:45 +02:00
2024-08-29 15:01:46 +02:00
db_name=$(ynh_app_setting_get --key=db_name)
2023-02-16 10:07:14 +01:00
db_user=$db_name
2016-04-29 16:32:48 +02:00
#=================================================
2023-08-27 07:48:19 +02:00
# REMOVE SYSTEM CONFIGURATIONS
#=================================================
2024-08-29 15:01:46 +02:00
# REMOVE SYSTEMD SERVICE
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Removing system configurations related to $app..."
2022-06-26 20:30:44 +02:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2024-08-29 15:01:46 +02:00
if ynh_hide_warnings yunohost service status $app >/dev/null
then
2024-08-29 15:01:46 +02:00
ynh_script_progression "Removing $app service integration..."
yunohost service remove $app
fi
2017-07-19 13:32:24 +02:00
# Remove the dedicated systemd config
2024-08-29 15:01:46 +02:00
ynh_config_remove_systemd
2021-11-13 23:17:56 +01:00
# Remove the app-specific logrotate config
2024-08-29 15:01:46 +02:00
ynh_config_remove_logrotate
2021-11-13 23:17:56 +01:00
2023-03-30 16:05:39 +02:00
if [ -d "/tmp/ufs" ]; then
2024-08-29 15:01:46 +02:00
ynh_safe_rm "/tmp/ufs"
2023-03-30 16:05:39 +02:00
fi
# Remove the dedicated NGINX config
2024-08-29 15:01:46 +02:00
ynh_config_remove_nginx
2023-03-30 16:05:39 +02:00
# Remove metapackage and its dependencies
2024-08-29 15:01:46 +02:00
ynh_nodejs_remove
2023-03-30 16:05:39 +02:00
#=================================================
# REMOVE THE MONGODB DATABASE
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Removing the MongoDB database..."
2024-08-29 15:01:46 +02:00
ynh_replace --match="engine: wiredTiger" --replace="# engine:" --file="/etc/mongod.conf"
ynh_replace --match="replication:" --replace="#replication:" --file="/etc/mongod.conf"
ynh_replace --match=" replSetName: rs01" --replace="" --file="/etc/mongod.conf"
2022-06-27 02:49:41 +02:00
2024-08-29 15:01:46 +02:00
ynh_systemctl --service=mongod --action=restart --log_path=/var/log/mongodb/mongod.log --wait_until="Waiting for connections"
2022-06-27 02:49:41 +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
2024-08-29 15:01:46 +02:00
ynh_safe_rm "/var/lib/mongodb"
2022-06-26 20:30:44 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2024-08-29 15:01:46 +02:00
ynh_script_progression "Removal of $app completed"