summaryrefslogtreecommitdiff
path: root/cpp/demo/IceGrid/secure/makecerts.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2008-04-24 12:02:22 +0200
committerBenoit Foucher <benoit@zeroc.com>2008-04-24 12:02:22 +0200
commita32b1ad1d118f725e1e5b484aed91d92d9732992 (patch)
tree4a4959d3b30a769a4f0eb5177801cc58076d00da /cpp/demo/IceGrid/secure/makecerts.py
parentSquashed commit of the following: (diff)
downloadice-a32b1ad1d118f725e1e5b484aed91d92d9732992.tar.bz2
ice-a32b1ad1d118f725e1e5b484aed91d92d9732992.tar.xz
ice-a32b1ad1d118f725e1e5b484aed91d92d9732992.zip
IceGrid secure demo fixes
Diffstat (limited to 'cpp/demo/IceGrid/secure/makecerts.py')
-rwxr-xr-xcpp/demo/IceGrid/secure/makecerts.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/IceGrid/secure/makecerts.py b/cpp/demo/IceGrid/secure/makecerts.py
index b88df6d3430..2204e3ea25c 100755
--- a/cpp/demo/IceGrid/secure/makecerts.py
+++ b/cpp/demo/IceGrid/secure/makecerts.py
@@ -53,7 +53,6 @@ createCertificate("registry", "IceGrid Registry")
createCertificate("node", "IceGrid Node")
createCertificate("glacier2", "Glacier2")
createCertificate("server", "Server")
-createCertificate("admin", "Admin")
print "======= Creating Java Key Store ======="
@@ -61,6 +60,7 @@ try:
os.remove("certs.jks")
except OSError:
pass
-iceca("import --java admin admin_cert.pem admin_key.pem certs.jks")
+
+iceca("import --java ca_cert ca/db/ca_cert.pem ca/db/ca_key.pem certs.jks")
os.chdir("..")