diff --git a/tools/heat-db-drop b/tools/heat-db-drop new file mode 100755 index 0000000000..e472452ecc --- /dev/null +++ b/tools/heat-db-drop @@ -0,0 +1,8 @@ +#!/bin/bash +cat << EOF | mysql -u root -p +DROP USER 'heat'@'localhost'; +DROP USER 'heat'@'%'; +DROP DATABASE heat; +flush privileges; +EOF +