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

33 lines
879 B
Text
Raw Normal View History

2015-04-28 17:32:31 +02:00
#!/bin/bash
2017-02-21 04:04:26 +01:00
# Exit on command errors and treat unset variables as an error
2017-02-21 04:23:47 +01:00
set -u
2017-02-21 04:04:26 +01:00
2017-03-10 22:47:54 +01:00
# Get multi-instances specific variables
2016-09-20 01:51:28 +02:00
app=$YNH_APP_INSTANCE_NAME
2017-03-10 22:47:54 +01:00
# Source app helpers
. /usr/share/yunohost/helpers
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
# with_mysql=$(ynh_app_setting_get "$app" with_mysql)
2017-03-10 22:47:54 +01:00
# Drop MySQL database and user as needed
#if [[ $with_mysql -eq 1 ]]; then
dbname=$app
dbuser=$app
dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
ynh_mysql_drop_db $dbname || true
ynh_mysql_drop_user $dbuser || true
#fi
2017-03-10 22:47:54 +01:00
# Delete app directory and configurations
sudo rm -rf "/var/www/${app}"
sudo rm -f "/etc/php5/fpm/pool.d/${app}.conf"
sudo rm -f "/etc/php5/fpm/conf.d/20-${app}.ini"
[[ -n $domain ]] && sudo rm -f "/etc/nginx/conf.d/${domain}.d/${app}.conf"
# Reload services
sudo service php5-fpm restart || true
sudo service nginx reload || true