mirror of
https://github.com/YunoHost-Apps/restic_ynh.git
synced 2024-09-03 20:16:22 +02:00
64 lines
2.3 KiB
Bash
Executable file
64 lines
2.3 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
export final_path="/opt/yunohost/${app}"
|
|
|
|
#=================================================
|
|
# REMOVE DEPENDENCIES
|
|
#=================================================
|
|
ynh_script_progression --message="Removing dependencies" --weight=4
|
|
ynh_remove_app_dependencies
|
|
|
|
#=================================================
|
|
# REMOVE FILES
|
|
#=================================================
|
|
ynh_script_progression --message="Removing files" --weight=2
|
|
systemctl stop ${app}.timer
|
|
systemctl --quiet disable ${app}.timer
|
|
ynh_remove_systemd_config --service=${app}
|
|
ynh_remove_systemd_config --service=${app}_check
|
|
ynh_remove_systemd_config --service=${app}_check_read_data
|
|
ynh_secure_remove "/etc/systemd/system/${app}.timer"
|
|
ynh_secure_remove "/etc/systemd/system/${app}_check.timer"
|
|
ynh_secure_remove "/etc/systemd/system/${app}_check_read_data.timer"
|
|
ynh_secure_remove "/usr/local/bin/backup-with-${app}"
|
|
ynh_secure_remove "/etc/yunohost/hooks.d/backup_method/05-${app}_app"
|
|
ynh_secure_remove "${final_path}/check_method_${app}"
|
|
ynh_secure_remove "${final_path}/check-${app}"
|
|
ynh_secure_remove "${final_path}/restic_log_${app}"
|
|
ynh_secure_remove "${final_path}/restic_check_log_${app}"
|
|
ynh_secure_remove "${final_path}"
|
|
|
|
#=================================================
|
|
# REMOVE LOGROTATE CONFIG
|
|
#=================================================
|
|
ynh_script_progression --message="Removing logrotate config"
|
|
ynh_remove_logrotate
|
|
|
|
#=================================================
|
|
# REMOVE SSH CONFIG
|
|
#=================================================
|
|
ynh_script_progression --message="Removing ssh config"
|
|
ssh_dir="/root/.ssh"
|
|
sed -e "/begin ${app}/,/end ${app}/{/.*/d}" ${ssh_dir}/config -i || true
|
|
|
|
#=================================================
|
|
# REMOVE USER
|
|
#=================================================
|
|
ynh_script_progression --message="Removing sudoers rights for user ${app}"
|
|
rm /etc/sudoers.d/${app}
|
|
ynh_script_progression --message="Removing ${app} user" --last
|
|
userdel ${app}
|