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

31 lines
860 B
Text
Raw Normal View History

2022-04-21 18:30:00 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2023-02-17 22:06:21 +01:00
# REMOVE SYSTEMD SERVICE
2022-04-21 18:30:00 +02:00
#=================================================
2023-02-17 22:06:21 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2022-04-21 18:30:00 +02:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2023-02-17 22:06:21 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2022-04-21 18:30:00 +02:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
#=================================================
# END OF SCRIPT
#=================================================
2022-04-23 09:10:45 +02:00
ynh_script_progression --message="Removal of $app completed" --last