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

80 lines
2.2 KiB
Text
Raw Normal View History

2017-02-02 20:25:21 +01:00
#!/bin/bash
2018-02-23 20:17:09 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-02-02 20:25:21 +01:00
2018-02-23 20:17:09 +01:00
source _common.sh
source /usr/share/yunohost/helpers
2017-02-02 20:25:21 +01:00
2018-02-23 20:17:09 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2017-04-21 12:54:39 +02:00
app=$YNH_APP_INSTANCE_NAME
2017-02-02 20:25:21 +01:00
2018-02-23 20:17:09 +01:00
final_path=$(ynh_app_setting_get $app final_path)
port=$(ynh_app_setting_get $app port)
2017-02-02 20:25:21 +01:00
domain=$(ynh_app_setting_get $app domain)
2019-02-03 00:20:08 +01:00
db_name=$(ynh_app_setting_get $app db_name)
db_user=$db_name
2017-02-02 20:25:21 +01:00
2018-02-23 20:17:09 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
# Remove the dedicated systemd config
ynh_remove_systemd_config
#=================================================
# REMOVE APP MAIN DIR
#=================================================
# Remove the app directory securely
ynh_secure_remove "$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2017-04-21 12:54:39 +02:00
2018-02-23 20:17:09 +01:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2017-04-21 12:54:39 +02:00
2018-02-23 20:17:09 +01:00
#=================================================
# Delete Log
#=================================================
2017-02-02 20:25:21 +01:00
2019-02-03 01:04:06 +01:00
ynh_secure_remove "/var/log/$app.log"
2017-02-02 20:25:21 +01:00
2018-02-23 20:17:09 +01:00
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2017-02-02 20:25:21 +01:00
2018-02-23 20:17:09 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
echo "Close port $port"
yunohost firewall disallow TCP $port 2>&1
fi
2017-02-02 20:25:21 +01:00
2018-02-23 20:17:09 +01:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2017-02-02 20:25:21 +01:00
2018-02-23 20:17:09 +01:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2019-02-03 00:20:08 +01:00
#=================================================
# REMOVE THE PostgreSQL DATABASE
#=================================================
ynh_psql_remove_db $db_name $db_user