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

47 lines
1.1 KiB
Bash

#!/bin/bash
app="movim"
# Source local helpers
source ./_common.sh
# Source YunoHost helpers if exists.
# If not, source backported helpers from file.
if [ -d "/usr/share/yunohost/helpers" ]; then
source /usr/share/yunohost/helpers
else
source ./_helpers.sh
fi
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
# Remove nginx and php-fpm configuration files
sudo rm -f "/etc/nginx/conf.d/${domain}.d/movim.conf"
sudo rm -f "/etc/php5/fpm/pool.d/movim.conf"
# Reload services
sudo service nginx reload
sudo service php5-fpm restart
# Stop service and remove it
sudo service movim stop
if [ -d /run/systemd/system ]; then
sudo systemctl --quiet disable movim.service
sudo rm -f /lib/systemd/system/movim.service
sudo systemctl --quiet daemon-reload
else
sudo update-rc.d -f movim remove
sudo rm -f /etc/init.d/movim
fi
# Drop MySQL database and user
db_user=movim
db_name=movim
ynh_mysql_drop_db "$db_name" || true
ynh_mysql_drop_user "$db_user" || true
# Remove Movim files and user
sudo rm -rf /var/www/movim
ynh_system_user_exists movim \
&& sudo userdel movim