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

114 lines
3.8 KiB
Text
Raw Normal View History

2016-04-29 16:32:48 +02:00
#!/bin/bash
2017-07-18 13:03:45 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-07-10 19:40:17 +02:00
source _common.sh
2017-07-18 13:03:45 +02:00
source /usr/share/yunohost/helpers
2021-07-10 19:40:17 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --weight=1
2017-07-18 13:03:45 +02:00
2017-07-18 13:21:17 +02:00
app=$YNH_APP_INSTANCE_NAME
2016-04-29 16:32:48 +02:00
2021-07-10 19:40:17 +02:00
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)
2016-04-29 16:32:48 +02:00
2021-07-10 19:40:17 +02:00
#=================================================
# 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
2017-07-19 13:32:24 +02:00
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
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
2021-07-10 19:40:17 +02:00
#=================================================
# 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
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
ynh_remove_systemd_config --service=$mongodb_servicename
2021-07-10 19:40:17 +02:00
2021-11-18 17:26:35 +01:00
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
# Remove the app-specific logrotate config
ynh_remove_logrotate
2021-07-10 19:40:17 +02:00
#=================================================
# 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
2021-07-10 19:40:17 +02:00
# 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"
2021-11-19 21:14:19 +01:00
if [ -d "/tmp/ufs" ]; then
ynh_secure_remove --file="/tmp/ufs"
fi
2021-07-10 19:40:17 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2022-03-20 21:48:11 +01:00
# Remove the dedicated NGINX config
2021-07-10 19:40:17 +02:00
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
#=================================================
2021-07-10 19:40:17 +02:00
ynh_script_progression --message="Removal of $app completed" --last