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

48 lines
1.7 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
2020-03-03 20:06:25 +01:00
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
2021-02-27 22:49:02 +01:00
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"
2021-02-28 16:38:35 +01:00
ynh_secure_remove "${final_path}/check_method_${app}"
2020-03-03 20:06:25 +01:00
ynh_secure_remove "${final_path}/check-${app}"
ynh_secure_remove "${final_path}"
#=================================================
# REMOVE SSH CONFIG
#=================================================
ynh_script_progression --message="Removing ssh config" --last
2021-02-28 16:38:35 +01:00
sed -e "/begin ${app}/,/end ${app}/{/.*/d}" /root/.ssh/config -i || true