1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00
weblate_ynh/scripts/remove

89 lines
2.4 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-10-17 15:46:35 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
2017-10-04 15:22:54 +02:00
db_name=$(ynh_app_setting_get "$app" db_name)
#=================================================
# REMOVE SERVICE FROM ADMIN PANEL
#=================================================
2017-09-21 14:48:29 +02:00
if yunohost service status | grep -q "$app"
then
echo "Remove $app service"
2017-09-21 14:48:29 +02:00
systemctl stop "$app.service"
yunohost service remove "$app.service"
fi
#=================================================
2017-09-21 14:48:29 +02:00
# REMOVE THE PostgreSQL DATABASE
#=================================================
2017-09-21 14:48:29 +02:00
# Remove a database if it exists, along with the associated user
ynh_psql_remove_db "$db_name" "$app"
#=================================================
2017-09-21 14:48:29 +02:00
# REMOVE DEPENDENCIES
#=================================================
2017-09-21 14:48:29 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
# REMOVE APP MAIN DIR
#=================================================
# Remove the app directory securely
ynh_secure_remove "/var/www/$app"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE CRON FILE
#=================================================
# Remove a cron file
ynh_secure_remove "/etc/cron.d/$app"
2017-09-14 13:25:11 +02:00
#=================================================
# REMOVE uwsgi and systemd files
#=================================================
2017-09-20 21:43:09 +02:00
ynh_secure_remove "/etc/systemd/system/$app.service"
2017-09-14 13:25:11 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
# Delete a system user
2017-10-04 15:22:54 +02:00
ynh_system_user_delete "$app"