mirror of
https://github.com/YunoHost-Apps/borgserver_ynh.git
synced 2024-09-03 20:36:20 +02:00
30 lines
895 B
Bash
Executable file
30 lines
895 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# REMOVE USER BUT KEEP FILES
|
|
#=================================================
|
|
# We keep files cause we don't know what the user want to do about
|
|
# backups stored in the home directory
|
|
|
|
ynh_system_user_delete --username="$ssh_user"
|
|
|
|
#=================================================
|
|
# REMOVE CRON FILES
|
|
#=================================================
|
|
|
|
ynh_secure_remove "/etc/cron.d/$app"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|