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~
monsieur-a ff1ca4078e Revert "test php"
This reverts commit 727e29d5cb.
2014-07-07 18:59:01 +02:00

17 lines
458 B
Bash

#!/bin/bash
db_user=piwigo
db_name=piwigo
root_pwd=$(sudo cat /etc/yunohost/mysql)
domain=$(sudo yunohost app setting piwigo domain)
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
sudo rm -rf /var/www/piwigo
sudo rm -f /etc/nginx/conf.d/$domain.d/piwigo.conf
sudo rm -f /etc/php5/fpm/pool.d/piwigo.conf
sudo rm -f /etc/php5/fpm/conf.d/20-piwigo.ini
sudo rm -rf /home/yunohost.app/piwigo
sudo service nginx reload