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

29 lines
710 B
Text
Raw Normal View History

2016-07-26 22:51:05 +02:00
#!/bin/bash
2016-06-28 17:29:32 +02:00
# Exit on command errors and treat unset variables as an error
app=$YNH_APP_INSTANCE_NAME
2016-06-28 17:29:32 +02:00
# Source app helpers
2017-02-21 23:23:45 +01:00
source /usr/share/yunohost/helpers
2016-06-28 17:29:32 +02:00
# Retrieve arguments
2017-02-21 23:23:45 +01:00
dbuser=$app
dbname=$app
domain=$(ynh_app_setting_get "$app" domain)
2016-06-28 17:29:32 +02:00
# Drop MySQL database and user
2017-02-21 23:23:45 +01:00
ynh_mysql_drop_db "$dbname" 2>&1 || true
ynh_mysql_drop_user "$dbuser" 2>&1 || true
2015-02-06 19:42:21 +01:00
2016-06-28 17:29:32 +02:00
# Delete app directory and configurations
2017-02-21 23:23:45 +01:00
sudo rm -rf "/var/www/${app}"
sudo rm -f "/etc/php5/fpm/pool.d/${app}.conf"
[[ -n $domain ]] && sudo rm -f "/etc/nginx/conf.d/${domain}.d/${app}.conf"
2016-06-28 17:29:32 +02:00
# Remove GPG key
2017-02-21 23:23:45 +01:00
sudo gpg --batch --delete-key --yes Rainloop
2016-06-28 17:29:32 +02:00
# Reload services
sudo service php5-fpm reload
sudo service nginx reload