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

77 lines
2.1 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
domain=$(ynh_app_setting_get "$app" domain)
2017-10-04 15:22:54 +02:00
db_name=$(ynh_app_setting_get "$app" db_name)
#=================================================
# STOP WEBLATE'S SERVICE
#=================================================
systemctl stop "uwsgi-app@$app.service"
#=================================================
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
#=================================================
# 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-11-21 13:09:12 +01:00
ynh_remove_uwsgi_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"