1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monica_ynh.git synced 2024-09-03 19:46:23 +02:00
monica_ynh/scripts/remove
Sebastian Gumprich 647b307351 add nodejs removal
2017-06-14 20:48:12 +02:00

37 lines
656 B
Bash
Executable file

#!/bin/bash
set -u
# See comments in install script
app=$YNH_APP_INSTANCE_NAME
# Source YunoHost helpers
source /usr/share/yunohost/helpers
source ./_common.sh
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
# Remove sources
sudo rm -rf /var/www/$app
# Remove nginx configuration file
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
# Remove cronjob
sudo rm -f /etc/cron.d/$app
# Remove PHP7.0
ynh_remove_php7
# Remove NodeJS
ynh_remove_nodejs
# Remove mysql user and database
dbname=$app
dbuser=$app
ynh_mysql_drop_db "$dbname" || true
ynh_mysql_drop_user "$dbuser" || true
# Reload nginx service
sudo service nginx reload