[java-identity-provider COMMIT] /trunk/idp-distribution/src/main/resources/bin/build.xml
noreply at shibboleth.net
noreply at shibboleth.net
Wed Jul 15 06:08:26 EDT 2015
Author: rdw
Date: Wed Jul 15 06:08:26 2015
New Revision: 7637
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7637&view=rev
Log:
IDP-707 Better prompts and output for keystore
https://issues.shibboleth.net/jira/browse/IDP-707
Don't talk about TLS, talk more about Backchannel.
Modified:
trunk/idp-distribution/src/main/resources/bin/build.xml
Modified: trunk/idp-distribution/src/main/resources/bin/build.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-distribution/src/main/resources/bin/build.xml?rev=7637&r1=7636&r2=7637&view=diff
==============================================================================
--- trunk/idp-distribution/src/main/resources/bin/build.xml (original)
+++ trunk/idp-distribution/src/main/resources/bin/build.xml Wed Jul 15 06:08:26 2015
@@ -85,7 +85,7 @@
<target name="getkeystorepassword" if="idp.ask.keystore.password" depends="checkproperties">
<TGT>getkeystorepassword</TGT>
<fail if="idp.noprompt">Input needed, silence demanded</fail>
- <input message="TLS Private Key Password: " addproperty="idp.keystore.password">
+ <input message="Backchannel PKCS12 Password: " addproperty="idp.keystore.password">
<handler classname="net.shibboleth.idp.installer.ant.PasswordHandler"/>
</input>
</target>
@@ -391,7 +391,7 @@
<target name="backchannel-key" unless="idp.relying.party.present" depends="getkeystorepassword, gethostname, geturisubjectaltname">
<TGT>backchannel-key</TGT>
- <echo>Creating TLS keystore, CN = ${idp.host.name} URI = ${idp.uri.subject.alt.name} ...</echo>
+ <echo>Creating Backchannel keystore, CN = ${idp.host.name} URI = ${idp.uri.subject.alt.name} ...</echo>
<mkdir dir="${idp.target.dir}/credentials"/>
<selfsignedcert hostname="${idp.host.name}" keystoreFile="${idp.target.dir}/credentials/idp-backchannel.p12" certificateFile="${idp.target.dir}/credentials/idp-backchannel.crt" keystorePassword="${idp.keystore.password}" uriSubjectAltNames="${idp.uri.subject.alt.name}" />
<echo>...done</echo>
More information about the commits
mailing list