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

22 lines
520 B
Text
Raw Normal View History

2022-04-21 18:30:00 +02:00
#!/bin/bash
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
#=================================================
2024-06-23 21:13:38 +02:00
ynh_script_progression "Removing system configurations related to $app..."
2022-04-21 18:30:00 +02:00
2024-06-23 21:13:38 +02:00
ynh_config_remove_nginx
2022-04-21 18:30:00 +02:00
2024-06-23 21:13:38 +02:00
ynh_config_remove_logrotate
2022-04-21 18:30:00 +02:00
2024-06-23 21:13:38 +02:00
ynh_config_remove_phpfpm
2022-04-21 18:30:00 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2024-06-23 21:13:38 +02:00
ynh_script_progression "Removal of $app completed"