aa02d3270e
Signed-off-by: Steven Dake <sdake@redhat.com>
9 lines
137 B
Bash
Executable File
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
|
|
|