2023-10-08 18:31:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2024-08-31 02:57:08 +02:00
|
|
|
ynh_script_progression "Stopping and removing the systemd service..."
|
2023-10-08 18:31:27 +02:00
|
|
|
|
2024-08-31 02:57:08 +02:00
|
|
|
ynh_config_remove_systemd
|
2023-10-08 18:31:27 +02:00
|
|
|
|
2024-08-31 02:57:08 +02:00
|
|
|
ynh_script_progression "Removing NGINX web server configuration..."
|
|
|
|
ynh_config_remove_nginx
|
2023-10-08 18:31:27 +02:00
|
|
|
|
2023-10-08 19:03:40 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2024-08-31 02:57:08 +02:00
|
|
|
ynh_script_progression "Removing dependencies..."
|
2023-10-08 18:31:27 +02:00
|
|
|
|
2024-08-31 02:57:08 +02:00
|
|
|
ynh_nodejs_remove
|
2023-10-08 18:31:27 +02:00
|
|
|
|
2023-10-08 19:03:40 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2024-08-31 02:57:08 +02:00
|
|
|
ynh_script_progression "Removing service in YunoHost..."
|
2023-10-08 18:31:27 +02:00
|
|
|
|
2023-10-29 14:14:34 +01:00
|
|
|
yunohost service remove $app
|
2023-10-08 18:31:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 02:57:08 +02:00
|
|
|
ynh_script_progression "Removal of $app completed"
|