1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jellyfin_ynh.git synced 2024-09-03 19:26:29 +02:00

Explicitely delete directories during removal

This commit is contained in:
tituspijean 2021-03-27 17:28:26 +01:00
parent 4961da158e
commit d1adcf3b1c

View file

@ -17,6 +17,8 @@ ynh_script_progression --message="Loading installation settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
config_path=$(ynh_app_setting_get --app=$app --key=config_path)
#=================================================
# STANDARD REMOVE
@ -43,6 +45,16 @@ apt remove jellyfin-ffmpeg -y
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
# REMOVE APP DIRECTORIES
#=================================================
ynh_script_progression --message="Removing app directories..." --time --weight=1
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
ynh_secure_remove --file="$config_path"
ynh_secure_remove --file="/etc/systemd/system/jellyfin.service.d"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================