2022-11-02 10:16:52 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Removing service in YunoHost..." --weight=1
|
|
|
|
yunohost service remove $app
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Removing the systemd service..." --weight=1
|
2022-11-02 10:16:52 +01:00
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Removing the web server configuration..." --weight=2
|
2022-11-02 10:16:52 +01:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Removal completed" --last
|