2016-10-25 00:00:01 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-10-14 14:38:56 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2016-10-25 00:00:01 +02:00
|
|
|
|
2017-10-14 14:38:56 +02:00
|
|
|
#=================================================
|
2024-06-18 10:01:08 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2017-10-14 14:38:56 +02:00
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Removing system configurations related to $app..."
|
2016-10-25 00:00:01 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
if ynh_hide_warnings yunohost service status $app >/dev/null
|
2020-07-25 23:14:14 +02:00
|
|
|
then
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Removing $app service integration..."
|
2020-07-25 23:14:14 +02:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
2016-10-25 00:00:01 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_remove_systemd
|
2016-10-25 00:00:01 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_remove_nginx
|
2017-10-14 14:38:56 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_remove_logrotate
|
2017-10-14 14:38:56 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_safe_rm "/usr/bin/$app"
|
2017-10-14 14:38:56 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_nodejs_remove
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2020-07-25 23:14:14 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Removal of $app completed"
|