Updated the CASA_Auth_Token_Svc Windows Install to also install a casa_crypto.properties file for the use of consumers of the Jaas module.

This commit is contained in:
Juan Carlos Luciani
2007-06-04 16:21:10 +00:00
parent 502559daa1
commit 81eaece05b
3 changed files with 60 additions and 31 deletions

View File

@@ -425,12 +425,15 @@ public class Configure
if (AtsConfigurator.ERROR_NO_ERROR == (rc = createFileFromTemplate(new File(installDir + "\\etc\\svc\\templates\\jaas.conf"),
new File(installDir + "\\etc\\svc\\jaas.conf"),
false, false)))
if (AtsConfigurator.ERROR_NO_ERROR == (rc = createFileFromTemplate(new File(installDir + "\\etc\\svc\\templates\\casa_crypto.properties"),
if (AtsConfigurator.ERROR_NO_ERROR == (rc = createFileFromTemplate(new File(installDir + "\\etc\\svc\\templates\\svc_casa_crypto.properties"),
new File(installDir + "\\etc\\svc\\casa_crypto.properties"),
false, true)))
rc = createFileFromTemplate(new File(installDir + "\\etc\\svc\\templates\\log4j.properties"),
new File(installDir + "\\etc\\svc\\log4j.properties"),
true, false);
if (AtsConfigurator.ERROR_NO_ERROR == (rc = createFileFromTemplate(new File(installDir + "\\etc\\svc\\templates\\client_casa_crypto.properties"),
new File(installDir + "\\etc\\keys\\client\\casa_crypto.properties"),
false, true)))
rc = createFileFromTemplate(new File(installDir + "\\etc\\svc\\templates\\log4j.properties"),
new File(installDir + "\\etc\\svc\\log4j.properties"),
true, false);
AtsConfigurator.log("Configure.setupRelocatableFiles()- End, rc= ", rc);