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

10 lines
192 B
Text
Raw Normal View History

2015-09-27 23:55:31 +02:00
set -e
2015-09-27 23:37:04 +02:00
final_path=/var/www/noalyss
sudo rm -rf $final_path
2015-09-28 00:59:52 +02:00
sudo su postgres -c "psql -l | grep \"\<noalyss\>\" | awk '{print $1}' | xargs -l dropdb"
2015-09-27 23:42:07 +02:00
2015-09-28 00:41:17 +02:00
sudo su postgres -c 'dropuser noalyss'