2015-03-19 20:49:50 +01:00
|
|
|
#!/bin/bash
|
2015-11-18 00:28:42 +01:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2021-05-16 16:48:58 +02:00
|
|
|
# GENERIC START
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-06-15 23:56:45 +02:00
|
|
|
|
2017-03-21 00:44:14 +01:00
|
|
|
source _common.sh
|
2016-11-08 13:33:28 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-20 00:01:21 +02:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2021-05-16 16:48:58 +02:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
|
2021-05-16 16:48:58 +02:00
|
|
|
# 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
|
2016-05-20 00:01:21 +02:00
|
|
|
then
|
2021-05-16 16:48:58 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..."
|
2017-09-05 00:25:58 +02:00
|
|
|
yunohost service remove $app
|
2016-03-31 22:41:54 +02:00
|
|
|
fi
|
2015-03-26 13:07:01 +01:00
|
|
|
|
2021-01-03 15:51:09 +01:00
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=6
|
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2022-06-23 08:54:56 +02:00
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2022-06-23 08:54:56 +02:00
|
|
|
ynh_script_progression --message="Removing logrotate configuration..."
|
2017-03-19 19:16:10 +01:00
|
|
|
|
2022-06-23 08:54:56 +02:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
2017-03-19 19:16:10 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-01-18 19:56:43 +01:00
|
|
|
# REMOVE NGINX CONFIGURATION
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2020-10-05 22:02:46 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..."
|
2017-03-19 19:16:10 +01:00
|
|
|
|
2020-10-05 22:02:46 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2019-01-18 19:56:43 +01:00
|
|
|
ynh_remove_nginx_config
|
2015-11-18 00:28:42 +01:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
2021-05-16 16:48:58 +02:00
|
|
|
# REMOVE VARIOUS FILES
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2021-05-16 16:48:58 +02:00
|
|
|
ynh_script_progression --message="Removing various files..."
|
2017-03-19 19:16:10 +01:00
|
|
|
|
2021-05-16 16:48:58 +02:00
|
|
|
# Remove a cron file
|
2020-01-02 18:40:15 +01:00
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
2019-01-30 16:19:40 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-12 15:30:00 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|