commit | 055a08be4758c5254c2b29dcd24b46bad01d4c95 | [log] [tgz] |
---|---|---|
author | Joshua Hesketh <josh@nitrotech.org> | Fri Sep 06 16:48:41 2013 +1000 |
committer | Joshua Hesketh <josh@nitrotech.org> | Fri Sep 06 16:48:41 2013 +1000 |
tree | e9c43485f97d2bfa85189b1d590586dbe0e168a0 | |
parent | e13932b2ca590005334b0183245c2795dc08ae3d [diff] [blame] |
don't recreate the mysql user. Assume they are configured correctly
diff --git a/tools/setup_software.sh b/tools/setup_software.sh index f518d16..71909d9 100755 --- a/tools/setup_software.sh +++ b/tools/setup_software.sh
@@ -35,3 +35,6 @@ mkdir -p /var/lib/turbo-hipster chown turbo-hipster:turbo-hipster /var/log/turbo-hipster + +mysql -u root -e "create user 'nova'@'localhost' identified by 'tester';" +mysql -u root -e "grant all privileges on nova.* TO 'nova'@'localhost';"