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

104 lines
3 KiB
Text
Raw Normal View History

2017-04-08 04:04:27 +02:00
#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -u
2018-04-06 19:58:23 +02:00
if [ ! -e _common.sh ]; then
2017-05-07 00:23:22 +02:00
# Get file fonction if not been to the current directory
2018-04-06 19:58:23 +02:00
sudo cp ../settings/scripts/_common.sh ./_common.sh
sudo chmod a+rx _common.sh
2017-05-07 00:23:22 +02:00
fi
2018-04-06 19:58:23 +02:00
source _common.sh # Loads the generic functions usually used in the script
2017-04-08 04:04:27 +02:00
# Source app helpers
source /usr/share/yunohost/helpers
# Get multi-instances specific variables
app=$YNH_APP_INSTANCE_NAME
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
# Stop mastodon-web
if [ -e "/etc/systemd/system/mastodon-web.service" ]; then
echo "Delete systemd script"
sudo systemctl stop mastodon-web.service
2017-04-18 02:47:58 +02:00
ynh_secure_remove "/etc/systemd/system/mastodon-web.service"
2017-04-08 04:04:27 +02:00
sudo systemctl disable mastodon-web.service
fi
# Stop mastodon-sidekiq
if [ -e "/etc/systemd/system/mastodon-sidekiq.service" ]; then
echo "Delete systemd script"
sudo systemctl stop mastodon-sidekiq.service
2017-04-18 02:47:58 +02:00
ynh_secure_remove "/etc/systemd/system/mastodon-sidekiq.service"
2017-04-08 04:04:27 +02:00
sudo systemctl disable mastodon-sidekiq.service
fi
# Stop mastodon-sidekiq
if [ -e "/etc/systemd/system/mastodon-streaming.service" ]; then
echo "Delete systemd script"
2017-04-24 23:54:57 +02:00
sudo systemctl stop mastodon-streaming.service
2017-04-18 02:47:58 +02:00
ynh_secure_remove "/etc/systemd/system/mastodon-streaming.service"
2017-04-08 04:04:27 +02:00
sudo systemctl disable mastodon-streaming.service
fi
# Delete service on Yunohost monitoring
if sudo yunohost service status | grep -q mastodon-web
then
echo "Remove mastodon-web service"
sudo yunohost service remove mastodon-web
fi
# Delete service on Yunohost monitoring
if sudo yunohost service status | grep -q mastodon-sidekiq
then
echo "Remove mastodon-sidekiq service"
sudo yunohost service remove mastodon-sidekiq
fi
# Delete service on Yunohost monitoring
if sudo yunohost service status | grep -q mastodon-streaming
then
echo "Remove mastodon-streaming service"
sudo yunohost service remove mastodon-streaming
fi
2017-04-08 04:04:27 +02:00
# delete postgresql database & user
ynh_psql_drop_db "${app}_production"
2017-04-10 21:13:13 +02:00
ynh_psql_drop_role "${app}"
2017-04-08 04:04:27 +02:00
# Remove Debian package
2017-04-13 01:38:09 +02:00
sudo apt-get remove --purge -y yarn
2017-04-08 04:04:27 +02:00
#sudo apt-get remove --purge -y imagemagick ffmpeg libpq-dev libxml2-dev libxslt1-dev file curl git
# Delete redis package
#sudo apt-get remove --purge -y redis-server redis-tools
# Delete postgresql package
#sudo apt-get remove --purge -y postgresql postgresql-contrib
# Delete Ruby package
#sudo apt-get remove --purge -y autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3 libgdbm-dev
# Delete app directory and configurations
2017-04-18 02:47:58 +02:00
ynh_secure_remove /opt/$app
2017-04-08 04:04:27 +02:00
[[ -n $domain ]] && sudo rm -f "/etc/nginx/conf.d/${domain}.d/${app}.conf"
# Delete nginx configuration
REMOVE_NGINX_CONF
2017-04-08 04:04:27 +02:00
# Delete cronlog
2017-04-18 02:47:58 +02:00
ynh_secure_remove /etc/cron.d/$app
2017-04-11 15:22:54 +02:00
# Delete source.list
2017-04-18 02:47:58 +02:00
ynh_secure_remove /etc/apt/sources.list.d/backports.list
ynh_secure_remove /etc/apt/sources.list.d/yarn.list
2017-04-11 15:22:54 +02:00
# Delete ruby exec
2017-04-18 02:47:58 +02:00
ynh_secure_remove /usr/bin/ruby
2017-04-11 15:22:54 +02:00
2017-04-08 04:04:27 +02:00
# Remove user
sudo userdel -f $app
# Reload services
2017-04-18 02:47:58 +02:00
sudo systemctl reload nginx
2017-04-08 04:04:27 +02:00
2017-04-10 15:40:28 +02:00
echo -e "\e[0m" # Restore normal color