mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
22 lines
No EOL
533 B
Bash
22 lines
No EOL
533 B
Bash
#!/bin/bash
|
|
|
|
# See comments in install script
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Source YunoHost helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Retrieve app settings
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
db_user=spip
|
|
db_name=spip
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
|
|
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
|
|
sudo rm -rf /var/www/spip
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/spip.conf
|
|
sudo rm -f /etc/php5/fpm/pool.d/spip.conf
|
|
|
|
sudo service php5-fpm restart
|
|
sudo service nginx reload |