2018-06-14 02:13:59 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2018-08-31 01:11:12 +02:00
|
|
|
source _common.sh
|
2018-06-14 02:13:59 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2021-04-08 20:20:10 +02:00
|
|
|
# REMOVE USER BUT KEEP FILES
|
2018-06-14 02:13:59 +02:00
|
|
|
#=================================================
|
2021-04-08 20:20:10 +02:00
|
|
|
# We keep files cause we don't know what the user want to do about
|
|
|
|
# backups stored in the home directory
|
2023-10-25 21:57:09 +02:00
|
|
|
|
2024-08-12 13:03:41 +02:00
|
|
|
ynh_system_user_delete --username="$ssh_user"
|
2021-01-11 00:36:16 +01:00
|
|
|
|
2021-04-08 20:20:10 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE CRON FILES
|
|
|
|
#=================================================
|
2023-10-25 21:57:09 +02:00
|
|
|
|
2021-04-08 20:20:10 +02:00
|
|
|
ynh_secure_remove "/etc/cron.d/$app"
|
|
|
|
|
2021-01-11 00:36:16 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|