mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
14 lines
No EOL
389 B
Bash
14 lines
No EOL
389 B
Bash
#!/bin/bash
|
|
|
|
db_user=spip
|
|
db_name=spip
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
domain=$(sudo yunohost app setting spip domain)
|
|
|
|
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 |