You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by dr...@apache.org on 2017/09/15 10:48:20 UTC

[1/3] brooklyn-server git commit: Update visitors-creation-script.sql

Repository: brooklyn-server
Updated Branches:
  refs/heads/master 16c788edc -> 7a434e340


Update visitors-creation-script.sql

Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/413aa2cf
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/413aa2cf
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/413aa2cf

Branch: refs/heads/master
Commit: 413aa2cf9cf2593bef33482796892c1370dd2f78
Parents: 16c788e
Author: Graeme-Miller <gr...@cloudsoftcorp.com>
Authored: Thu Sep 14 12:52:06 2017 +0100
Committer: GitHub <no...@github.com>
Committed: Thu Sep 14 12:52:06 2017 +0100

----------------------------------------------------------------------
 launcher/src/test/resources/visitors-creation-script.sql | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/413aa2cf/launcher/src/test/resources/visitors-creation-script.sql
----------------------------------------------------------------------
diff --git a/launcher/src/test/resources/visitors-creation-script.sql b/launcher/src/test/resources/visitors-creation-script.sql
index 1640d1b..2fef262 100644
--- a/launcher/src/test/resources/visitors-creation-script.sql
+++ b/launcher/src/test/resources/visitors-creation-script.sql
@@ -20,13 +20,12 @@ create database visitors;
 use visitors;
 
 
-# the below will create user (and note create user not supported in some dialects)
+# Create two users: 'brooklyn'@'%' and 'brooklyn'@'localhost' with full access
 # default password specified for compatibility with older blueprints that don't provide config;
 # if your blueprint sets the password it can be removed here
 grant usage on *.* to 'brooklyn'@'%' identified by '${config["creation.script.password"]!"br00k11n"}';
-grant all privileges on visitors.* to 'brooklyn'@'%';
 # useful if sockets work also
-grant all privileges on visitors.* to 'brooklyn'@'localhost';
+grant all privileges on *.* to 'brooklyn'@'localhost' identified by '${config["creation.script.password"]!"br00k11n"}';
 
 # drop the anonymous users eg ''@'localhost' and sometimes other local hostnames
 # (necessary for same-host access as these are more restrictive rules that trump the wildcard above)


[3/3] brooklyn-server git commit: This closes #823

Posted by dr...@apache.org.
This closes #823


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/7a434e34
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/7a434e34
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/7a434e34

Branch: refs/heads/master
Commit: 7a434e340954d4e213a5fa91f4c795af436172c7
Parents: 16c788e 5a8e2d0
Author: Duncan Godwin <dr...@googlemail.com>
Authored: Fri Sep 15 11:48:11 2017 +0100
Committer: Duncan Godwin <dr...@googlemail.com>
Committed: Fri Sep 15 11:48:11 2017 +0100

----------------------------------------------------------------------
 .../src/test/resources/visitors-creation-script.sql             | 5 ++---
 launcher/src/test/resources/visitors-creation-script.sql        | 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)
----------------------------------------------------------------------



[2/3] brooklyn-server git commit: Update visitors-creation-script.sql

Posted by dr...@apache.org.
Update visitors-creation-script.sql

Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/5a8e2d0e
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/5a8e2d0e
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/5a8e2d0e

Branch: refs/heads/master
Commit: 5a8e2d0e66cdfa32bff057cfce238c9b3785d8cf
Parents: 413aa2c
Author: Graeme-Miller <gr...@cloudsoftcorp.com>
Authored: Thu Sep 14 12:53:11 2017 +0100
Committer: GitHub <no...@github.com>
Committed: Thu Sep 14 12:53:11 2017 +0100

----------------------------------------------------------------------
 .../src/test/resources/visitors-creation-script.sql             | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/5a8e2d0e/camp/camp-brooklyn/src/test/resources/visitors-creation-script.sql
----------------------------------------------------------------------
diff --git a/camp/camp-brooklyn/src/test/resources/visitors-creation-script.sql b/camp/camp-brooklyn/src/test/resources/visitors-creation-script.sql
index 1640d1b..2fef262 100644
--- a/camp/camp-brooklyn/src/test/resources/visitors-creation-script.sql
+++ b/camp/camp-brooklyn/src/test/resources/visitors-creation-script.sql
@@ -20,13 +20,12 @@ create database visitors;
 use visitors;
 
 
-# the below will create user (and note create user not supported in some dialects)
+# Create two users: 'brooklyn'@'%' and 'brooklyn'@'localhost' with full access
 # default password specified for compatibility with older blueprints that don't provide config;
 # if your blueprint sets the password it can be removed here
 grant usage on *.* to 'brooklyn'@'%' identified by '${config["creation.script.password"]!"br00k11n"}';
-grant all privileges on visitors.* to 'brooklyn'@'%';
 # useful if sockets work also
-grant all privileges on visitors.* to 'brooklyn'@'localhost';
+grant all privileges on *.* to 'brooklyn'@'localhost' identified by '${config["creation.script.password"]!"br00k11n"}';
 
 # drop the anonymous users eg ''@'localhost' and sometimes other local hostnames
 # (necessary for same-host access as these are more restrictive rules that trump the wildcard above)