heat/tools/heat-db-drop

9 lines
137 B
Bash
Executable File

#!/bin/bash
cat << EOF | mysql -u root -p
DROP USER 'heat'@'localhost';
DROP USER 'heat'@'%';
DROP DATABASE heat;
flush privileges;
EOF