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

37 lines
787 B
Text
Raw Normal View History

2016-10-05 19:44:08 +02:00
#!/bin/bash
# See comments in install script
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
2016-10-08 19:08:37 +02:00
sudo rm -rf /tmp/composerinstall
2016-10-05 19:44:08 +02:00
sudo rm -rf /var/www/$app
2017-02-22 15:57:58 +01:00
sudo rm -rf /opt/flarum_composer
2016-10-05 19:44:08 +02:00
# Remove nginx configuration file
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
### PHP ###
# If a dedicated php-fpm process is used:
sudo rm -f /etc/php5/fpm/pool.d/$app.conf
sudo service php5-fpm reload
### PHP end ###
### MySQL ###
# If a MySQL database is used:
# # Drop MySQL database and user
dbname=$app
dbuser=$app
ynh_mysql_drop_db "$dbname" || true
ynh_mysql_drop_user "$dbuser" || true
### MySQL end ###
# Reload nginx service
sudo service nginx reload