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
Éric Gaspar 11ff061051
Testing (#107)
* Add doctl test files

* Fix nodejs installation

* Improve droplet create

* Improve droplet create

* Improve droplet create

* Modify pkgchk config

* Modify pkgchk config

* Add testconfig again

* Use new helpers and restrict arch

* Upgrade test setup

* Add selamanses key

* Add fingerprint as key id

* Use prebuilt image

* Remove variables in app.src

* Add cleanup cmds

* Fix upgrade

* Remove apt-key warning

* Revert travis

* Revert apt-key setting and restore modifications (#70)

* Fix linter issues

* Fix linter issues

* Fix ynh_replace_string arguments

* Update README.md

* Enh testing (#77)

* Make it work again (#71)

* Auto-update README

* Fix linter

* Fix

* Fix

* Update install

* Update install

* Update install

* Update install

* Update install

* Update install

* Update install

* Update install

* Update install

* Update systemd.service

* Update install

* Update install

* Update install

* Fix

* 3.16.2

* Auto-update README

* Update install

* Update install

* Update install

* fix

* Update install

* Update install

* Update install

* Update systemd.service

* Update install

* Update install

* Fix

* Update install

* Update install

* Update systemd.service

* Update systemd.service

* Update install

* Fix

* Update systemd.service

* Fix

* Auto-update README

* Fix

* Update systemd.service

* Update install

* 4.1.2

* Auto-update README

* Add logrotate

* Update install

* Add templates

* Fix

* Update upgrade

* Fix

* Fix

* Fix

* Fix

* Fix

* Add description

* Auto-update README

* fix

* Fix

* Fix

* Set admin (#85)

* Add admin

* Delete updater.yml

* 4.2.0

* Auto-update README

* Update install

* Update check_process

* 4.2.1 (#90)

* 4.2.1

* 4.2.2 (#93)

* 4.2.2

* 4.3.0 (#96)

* 4.3.0

* 4.3.1 (#99)

* fix

* Update app.src

* Auto-update README

Co-authored-by: Yunohost-Bot <>

* Fédération

* Auto-update README

* Update manifest.json

* Auto-update README

* 4.3.2 (#101)

* 4.3.2

* Update _common.sh

* 4.4.0 (#103)

* 4.4.0

* Auto-update README

Co-authored-by: Yunohost-Bot <>

* Fix linter

* 4.5.0

* Auto-update README

* Update manifest.json

* 4.5.3

* Auto-update README

* Update remove (#106)

* 4.5.4

* Auto-update README

* Auto-update README

Co-authored-by: Selamanse <selamanse@scheinfrei.info>
Co-authored-by: Selamanse <selamanse@users.noreply.github.com>
Co-authored-by: Yunohost-Bot <>
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2022-03-25 22:53:54 +01:00

113 lines
3.8 KiB
Bash

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --weight=1
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=$db_name
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
# Remove the service from the list of services known by Yunohost (added from `yunohost service add`)
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
ynh_script_progression --message="Removing $app service..." --weight=1
yunohost service remove $app
fi
if ynh_exec_warn_less yunohost service status "$mongodb_servicename" >/dev/null
then
ynh_script_progression --message="Removing $mongodb_servicename service integration..."
yunohost service remove "$mongodb_servicename"
fi
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
# Remove the dedicated systemd config
ynh_remove_systemd_config
ynh_remove_systemd_config --service=$mongodb_servicename
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# REMOVE THE MONGODB DATABASE
#=================================================
ynh_script_progression --message="Removing the MongoDB database..."
# Remove a database if it exists, along with the associated user
ynh_mongo_remove_db --db_user=$db_user --db_name=$db_name
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_script_progression --message="Removing dependencies..." --weight=1
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
ynh_remove_nodejs
ynh_remove_mongo
#=================================================
# REMOVE APP MAIN DIR
#=================================================
ynh_script_progression --message="Removing app main directory..." --weight=1
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
if [ -d "/tmp/ufs" ]; then
ynh_secure_remove --file="/tmp/ufs"
fi
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
# Delete a system user
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last