
This is part of a transition to storing the config files in the snap, rather than in snapstack. Also updated .gitignore to ignore emacs temp files and snapcraft cruft. Change-Id: I917767c08e0daebdeb2392f2fc74ca3a3a1c57ac
10 lines
121 B
Bash
10 lines
121 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
sudo mysql -u root << EOF
|
|
DROP DATABASE nova;
|
|
DROP DATABASE nova_api;
|
|
DROP DATABASE nova_cell0;
|
|
EOF
|