mirror of
https://github.com/YunoHost-Apps/humhub_ynh.git
synced 2024-09-03 19:26:11 +02:00
e9d1b11b31
- Auto-install - Auto-setup LDAP - Install and upgrade from URL (no source in repo) - Improvement upgrade - PHP5-FPM - Package_check attempt
30 lines
606 B
Bash
30 lines
606 B
Bash
#!/bin/bash
|
|
set -u
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Source YunoHost helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Retrieve app settings
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
# Remove sources
|
|
sudo rm -rf /var/www/$app
|
|
sudo rm -f /etc/cron.d/$app
|
|
|
|
# Remove nginx configuration file
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
# Remove PHP-FPM configuration file
|
|
sudo rm -f /etc/php5/fpm/pool.d/$app.conf
|
|
|
|
# MySQL
|
|
dbname=$app
|
|
dbuser=$app
|
|
ynh_mysql_drop_db "$dbname" || true
|
|
ynh_mysql_drop_user "$dbuser" || true
|
|
|
|
# Reload services
|
|
sudo service php5-fpm reload
|
|
sudo service nginx reload
|