You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by wi...@apache.org on 2015/03/04 11:06:16 UTC

[32/50] [abbrv] git commit: updated refs/heads/reporter to 178a938

scripts: use cloudmanagementserver.keystore instead of cloud.keystore

Signed-off-by: Rohit Yadav <ro...@shapeblue.com>
(cherry picked from commit f70afa1375dd353a68c3ee9be941a605025cfc04)
Signed-off-by: Rohit Yadav <ro...@shapeblue.com>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/843c0f89
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/843c0f89
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/843c0f89

Branch: refs/heads/reporter
Commit: 843c0f891b902f9c5c4192e672244e6aee2a4f71
Parents: a831beb
Author: Rohit Yadav <ro...@shapeblue.com>
Authored: Sat Feb 28 17:05:29 2015 +0530
Committer: Rohit Yadav <ro...@shapeblue.com>
Committed: Sat Feb 28 17:06:27 2015 +0530

----------------------------------------------------------------------
 scripts/common/keys/ssl-keys.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/843c0f89/scripts/common/keys/ssl-keys.py
----------------------------------------------------------------------
diff --git a/scripts/common/keys/ssl-keys.py b/scripts/common/keys/ssl-keys.py
index 074a777..d6804cc 100644
--- a/scripts/common/keys/ssl-keys.py
+++ b/scripts/common/keys/ssl-keys.py
@@ -33,7 +33,7 @@ import traceback
 def generateSSLKey(outputPath):
   logf = open("ssl-keys.log", "w")
   hostName = socket.gethostbyname(socket.gethostname())
-  keyFile = outputPath + os.sep + "cloud.keystore"
+  keyFile = outputPath + os.sep + "cloudmanagementserver.keystore"
   logf.write("HostName = %s\n" % hostName)
   logf.write("OutputPath = %s\n" % keyFile)
   dname='cn="Cloudstack User",ou="' + hostName + '",o="' + hostName + '",c="Unknown"';