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

35 lines
1 KiB
Text
Raw Normal View History

2021-03-19 19:47:11 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-03-20 13:11:32 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-03-19 19:47:11 +01:00
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)
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2021-03-20 13:11:32 +01:00
ynh_script_progression --message="Removing app main directory..." --weight=1
2021-03-19 19:47:11 +01:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
#=================================================
# END OF SCRIPT
#=================================================
2021-03-20 13:11:32 +01:00
ynh_script_progression --message="Removal of $app completed" --last