1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/reiverr_ynh.git synced 2024-09-03 20:16:14 +02:00
reiverr_ynh/scripts/remove

34 lines
910 B
Text
Raw Normal View History

2023-10-08 18:31:27 +02:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
ynh_script_progression "Stopping and removing the systemd service..."
2023-10-08 18:31:27 +02:00
ynh_config_remove_systemd
2023-10-08 18:31:27 +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
#=================================================
ynh_script_progression "Removing dependencies..."
2023-10-08 18:31:27 +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
#=================================================
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
#=================================================
ynh_script_progression "Removal of $app completed"