[java-identity-provider] 01/02: IDP-1110 - handle changed property names

Rod Widdowson rdw at steadingsoftware.com
Wed Sep 5 06:37:15 EDT 2018


This is an automated email from the git hooks/post-receive script.

rdw pushed a commit to branch master
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=1ca59fbe3ac6e8ece124f3b7faece2bc56322aca

commit 1ca59fbe3ac6e8ece124f3b7faece2bc56322aca
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Wed Sep 5 11:12:05 2018 +0100

    IDP-1110 - handle changed property names
    
    https://issues.shibboleth.net/jira/browse/IDP-1110
    
    idp.backchannel.keystore.whatever
            becomes
    idp.backchannel.keyStoreWhatever
    
    our script writer needs to know about this
---
 idp-installer/src/main/wix/scripts/shib_write_configs.vbs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/idp-installer/src/main/wix/scripts/shib_write_configs.vbs b/idp-installer/src/main/wix/scripts/shib_write_configs.vbs
index 70c8e09..0140538 100644
--- a/idp-installer/src/main/wix/scripts/shib_write_configs.vbs
+++ b/idp-installer/src/main/wix/scripts/shib_write_configs.vbs
@@ -136,11 +136,11 @@ if (InstallJetty <> "") then
 '
 ' Only these 6 properties are used and only the password need be changed.
 '
-'	JettyFile.WriteLine "jetty.backchannel.keystore.path=../credentials/idp-backchannel.p12"
+'	JettyFile.WriteLine "jetty.backchannel.keyStorePath=../credentials/idp-backchannel.p12"
 '	JettyFile.WriteLine "jetty.sslContext.keyStorePath=../credentials/idp-userfacing.p12"
-	JettyFile.WriteLine "idp.backchannel.keystore.password=" & KeyStorePassword
+	JettyFile.WriteLine "idp.backchannel.keyStorePassword=" & KeyStorePassword
 	JettyFile.WriteLine "jetty.sslContext.keyStorePassword=" & SsoStorePassword
-'	JettyFile.WriteLine "idp.backchannel.keystore.type=PKCS12"
+'	JettyFile.WriteLine "idp.backchannel.keyStoreType=PKCS12"
 '	JettyFile.WriteLine "jetty.sslContext.keyStoreType=PKCS12"
 
 	JettyFile.Close

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list