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

116 lines
3.3 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
#=================================================
2019-02-21 12:45:27 +01:00
ynh_print_info "Loading installation 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
2019-02-09 22:01:38 +01: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
then
echo "Remove $app service"
yunohost service remove $app
fi
2018-02-23 20:17:09 +01:00
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2019-02-21 12:45:27 +01:00
ynh_print_info "Stopping and removing the systemd service"
2018-02-23 20:17:09 +01:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2019-02-21 12:45:27 +01:00
ynh_print_info "Removing app main directory"
2018-02-23 20:17:09 +01:00
# Remove the app directory securely
ynh_secure_remove "$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2019-02-21 12:45:27 +01:00
ynh_print_info "Removing nginx web server 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
#=================================================
2019-02-21 12:45:27 +01:00
ynh_print_info "Removing 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
#=================================================
2019-02-21 12:45:27 +01:00
ynh_print_info "Removing 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
#=================================================
2019-02-21 12:45:27 +01:00
# REMOVE THE POSTGRESQL DATABASE
#=================================================
ynh_print_info "Removing the PostgreSQL database"
ynh_psql_remove_db $db_name $db_user
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
ynh_print_info "Removing the dedicated system user"
# Delete a system user
ynh_system_user_delete $app
#=================================================
# END OF SCRIPT
2019-02-03 00:20:08 +01:00
#=================================================
2019-02-21 12:45:27 +01:00
ynh_print_info "Removal of $app completed"