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

49 lines
1.2 KiB
Text
Raw Normal View History

2017-02-07 22:55:13 +01:00
#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -u
source .fonctions # Loads the generic functions usually used in the script
source /usr/share/yunohost/helpers # Source app helpers
2017-02-07 22:55:13 +01:00
# Get multi-instances specific variables
2017-02-07 22:55:13 +01:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
# Stop lufi service
2017-02-07 22:55:13 +01:00
if [ -e "/etc/systemd/system/lufi.service" ]; then
echo "Delete systemd script"
sudo service lufi stop
sudo rm "/etc/systemd/system/lufi.service"
sudo systemctl disable lufi.service
fi
# Remove monitoring service Yunohost.
2017-02-07 22:55:13 +01:00
if sudo yunohost service status | grep -q lufi # Test l'existence du service dans Yunohost
then
echo "Remove lufi service"
sudo yunohost service remove lufi
fi
SECURE_REMOVE '/var/www/$app' # Delete directory application
2017-02-07 22:55:13 +01:00
REMOVE_NGINX_CONF # Delete nginx configuration
2017-02-07 22:55:13 +01:00
# Delete cron
2017-02-07 22:55:13 +01:00
if [ -e "/etc/cron.d/$app" ]; then
echo "Delete cron"
sudo rm "/etc/cron.d/$app"
fi
SECURE_REMOVE '/var/log/$app/' # Delete log
2017-02-07 22:55:13 +01:00
REMOVE_LOGROTATE_CONF # Delete logrotate configuration
2017-02-07 22:55:13 +01:00
ynh_package_remove build-essential || echo "build-essential already uninstalled"
# Reload SSOwat configuration
2017-02-07 22:55:13 +01:00
sudo yunohost app ssowatconf
echo -e "\e[0m" # Restore normal color