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

35 lines
666 B
Text
Raw Normal View History

2014-07-06 13:21:10 +02:00
#!/bin/bash
2017-02-15 07:46:59 +01:00
# Treat unset variables as an error
set -u
# See comments in install script
app=$YNH_APP_INSTANCE_NAME
2014-07-06 13:21:10 +02:00
# Source YunoHost helpers
source /usr/share/yunohost/helpers
2014-07-06 13:21:10 +02:00
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
2014-07-06 13:21:10 +02:00
# Remove sources
sudo rm -rf /var/www/$app
# Remove nginx configuration file
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
sudo rm -rf /home/yunohost.app/$app
sudo rm -f /etc/php5/fpm/pool.d/$app.conf
sudo service php5-fpm reload
# Drop MySQL database and user
dbname=$app
dbuser=$app
ynh_mysql_drop_db "$dbname" || true
ynh_mysql_drop_user "$dbuser" || true
# Reload nginx service
2014-07-06 13:21:10 +02:00
sudo service nginx reload