mirror of
https://github.com/YunoHost-Apps/leed_ynh.git
synced 2024-09-03 19:26:32 +02:00
Add remove script
This commit is contained in:
parent
6540095dd8
commit
a6df2b0284
1 changed files with 10 additions and 0 deletions
10
scripts/remove
Normal file
10
scripts/remove
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
db_user=leed
|
||||
db_name=leed
|
||||
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
||||
domain=$(sudo yunohost app setting leed domain)
|
||||
|
||||
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
|
||||
sudo rm -rf /var/www/leed
|
||||
sudo rm -f /etc/nginx/conf.d/$domain.d/leed.conf
|
Loading…
Add table
Reference in a new issue