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

27 lines
619 B
Text
Raw Normal View History

2015-04-06 17:46:57 +02:00
#!/bin/bash
2017-04-30 15:45:50 +02:00
# Exit on command errors and treat unset variables as an error
set -u
if [ ! -e _common ]; then
2017-05-08 17:37:47 +02:00
# Get file fonction if not been to the current directory
sudo cp ../settings/scripts/_common ./_common
sudo chmod a+rx _common
fi
2017-04-30 15:45:50 +02:00
# Source app helpers
source ./_common
source /usr/share/yunohost/helpers
# Get multi-instances specific variables
app=$YNH_APP_INSTANCE_NAME
2015-04-06 17:46:57 +02:00
# Retrieve arguments
2017-04-30 15:45:50 +02:00
domain=$(ynh_app_setting_get "$app" domain)
2015-04-06 17:46:57 +02:00
2017-04-30 15:45:50 +02:00
ynh_secure_remove /var/www/$app
ynh_secure_remove /etc/nginx/conf.d/$domain.d/$app.conf
ynh_remove_fpm_config
2015-04-06 17:46:57 +02:00
2017-04-30 15:45:50 +02:00
ynh_system_user_delete $app
2015-04-06 17:46:57 +02:00
2017-04-30 15:45:50 +02:00
sudo systemctl reload nginx