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

125 lines
3.5 KiB
Text
Raw Normal View History

2018-09-02 10:44:29 +02:00
#!/bin/bash
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
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Loading installation settings..."
2017-02-07 22:55:13 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-03-03 18:04:55 +01:00
final_path=$(ynh_app_setting_get $app final_path)
2017-02-07 22:55:13 +01:00
domain=$(ynh_app_setting_get $app domain)
2019-03-03 18:04:55 +01:00
port=$(ynh_app_setting_get $app port)
db_name=$(ynh_app_setting_get $app db_name)
db_user=$db_name
2017-02-07 22:55:13 +01:00
2018-09-02 10:43:59 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
# 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
#=================================================
2019-03-03 18:04:55 +01:00
# STOP AND REMOVE SERVICE
2018-09-02 10:43:59 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Stopping and removing the systemd service"
2018-09-02 10:43:59 +02:00
2019-03-03 18:04:55 +01:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2018-09-02 10:43:59 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Removing app main directory"
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
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Removing nginx web server configuration"
2018-09-02 10:43:59 +02:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2019-03-03 18:04:55 +01:00
#=================================================
# DELETE LOG
#=================================================
2019-03-26 23:43:55 +01:00
ynh_secure_remove "/var/log/$app"
2019-03-03 18:04:55 +01:00
2018-09-02 10:43:59 +02:00
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Removing logrotate configuration"
2018-09-02 10:43:59 +02:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
2019-03-03 18:04:55 +01:00
echo "Close port $port"
2018-09-02 10:43:59 +02:00
yunohost firewall disallow TCP $port 2>&1
2017-02-07 22:55:13 +01:00
fi
2018-09-02 10:43:59 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
# REMOVE DEPENDENCIES
2018-09-02 10:43:59 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Removing dependencies"
2017-02-07 22:55:13 +01:00
2019-03-03 18:04:55 +01:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2017-02-07 22:55:13 +01:00
2019-03-03 18:04:55 +01:00
#=================================================
# REMOVE THE POSTGRESQL DATABASE
#=================================================
ynh_print_info "Removing the PostgreSQL database"
ynh_psql_remove_db $db_name $db_user
2018-09-02 10:43:59 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Removing the dedicated system 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
2019-03-03 18:04:55 +01:00
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE CRON FILE
#=================================================
# Remove a cron file
ynh_secure_remove "/etc/cron.d/$app"
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Removal of $app completed"