diff options
author | Rob Austein <sra@hactrn.net> | 2010-11-02 02:20:34 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-11-02 02:20:34 +0000 |
commit | dfa0142dedcac4eda68c6d095c9a4cb91a4a98bf (patch) | |
tree | 8e912dbf2fb2f86babb0eb30e4771f9dc30f3ef0 /rpkid | |
parent | 26d428adeed444793ae297e682952eb1fcba4a93 (diff) |
On further analysis... /myrpki/bpki_server_ta doesn't appear in any
entitydb file, only in myrpki.xml, which is rewritten every time the
resource holder runs configure_resources. So backwards compatability
is a non-issue, and updating the schema now might help flag version
skew interop problems.
svn path=/rpkid/myrpki.rnc; revision=3527
Diffstat (limited to 'rpkid')
-rw-r--r-- | rpkid/myrpki.rnc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/rpkid/myrpki.rnc b/rpkid/myrpki.rnc index 8625d3f6..15ec2b76 100644 --- a/rpkid/myrpki.rnc +++ b/rpkid/myrpki.rnc @@ -35,11 +35,6 @@ timestamp = xsd:dateTime { pattern=".*Z" } # Message formate used between configure_resources and # configure_daemons. -# -# The <bpki_server_ta/> subelement here is a TLS relic that I missed -# removing when I ripped out the rest of the TLS code; the only reason -# I haven't this element is to avoid breaking interoperability with -# code that still generates it. start |= element myrpki { attribute version { version }, @@ -73,8 +68,7 @@ start |= element myrpki { element bpki_ca_certificate { base64 }?, element bpki_crl { base64 }?, element bpki_bsc_certificate { base64 }?, - element bpki_bsc_pkcs10 { base64 }?, - element bpki_server_ta { base64 }? + element bpki_bsc_pkcs10 { base64 }? } # Format of an identity.xml file. |