1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dolibarr_ynh.git synced 2024-09-03 18:35:53 +02:00
dolibarr_ynh/scripts/remove

30 lines
541 B
Text
Raw Normal View History

#!/bin/bash
2015-09-29 02:28:53 +02:00
set -u
app=$YNH_APP_INSTANCE_NAME
2015-09-29 02:28:53 +02:00
# Source YunoHost helpers
source /usr/share/yunohost/helpers
2015-09-29 02:28:53 +02:00
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
2015-09-29 02:28:53 +02:00
# Remove sources
sudo rm -rf /var/www/$app
2015-09-29 02:28:53 +02:00
# Remove nginx configuration file
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
2015-09-29 02:28:53 +02:00
# PHP
sudo rm -f /etc/php5/fpm/pool.d/$app.conf
sudo service php5-fpm reload
# MySQL
dbname=$app
dbuser=$app
ynh_mysql_drop_db "$dbname" || true
ynh_mysql_drop_user "$dbuser" || true
# Reload nginx service
2015-09-29 02:28:53 +02:00
sudo service nginx reload