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

96 lines
2.6 KiB
Text
Raw Normal View History

2018-09-02 10:43:59 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-02-07 22:55:13 +01:00
2018-09-02 10:43:59 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2018-09-02 10:43:59 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2017-02-07 22:55:13 +01:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
2018-09-02 10:43:59 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
# Remove the dedicated systemd config
ynh_remove_systemd_config
2017-02-07 22:55:13 +01:00
2018-09-02 10:43:59 +02:00
#=================================================
# REMOVE SERVICE FROM ADMIN PANEL
#=================================================
# Remove a service from the admin panel, added by `yunohost service add`
if yunohost service status | grep -q $app
2017-02-07 22:55:13 +01:00
then
2018-09-02 10:43:59 +02:00
echo "Remove $app service"
yunohost service remove $app
2017-02-07 22:55:13 +01:00
fi
2018-09-02 10:43:59 +02:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2017-02-07 22:55:13 +01:00
2018-09-02 10:43:59 +02:00
# Remove the app directory securely
ynh_secure_remove "$final_path"
2017-02-07 22:55:13 +01:00
2018-09-02 10:43:59 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
echo "Close port $port" >&2
yunohost firewall disallow TCP $port 2>&1
2017-02-07 22:55:13 +01:00
fi
2018-09-02 10:43:59 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE CRON FILE
#=================================================
2017-02-07 22:55:13 +01:00
2018-09-02 10:43:59 +02:00
# Remove a cron file
ynh_secure_remove "/etc/cron.d/$app"
2017-02-07 22:55:13 +01:00
2018-09-02 10:43:59 +02:00
# Remove the log files
ynh_secure_remove "/var/log/$app/"
2018-09-02 10:43:59 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2017-02-07 22:55:13 +01:00
2018-09-02 10:43:59 +02:00
# Delete a system user
ynh_system_user_delete $app