0f56ac018b
* Add x509_crl module. * Add integration tests. * Fix some errors. * Fix inversion. * Compare name instead of tpye. * Fix fail_json() calls. * Work around rename of serial_number attribute for cryptography 1.4. * Don't die for non-cert loading errors. * One more. * Fix function call. * Fixed/improved descriptions. * Don't read issuer from certificate file. * Allow to ignore timestamps. * Default value for revocation_date. * Update tests. * Mention ignore_timestamps in update docs. * Support privatekey_content, and require some options only if state is present. * Allow to pass certificate in directly. * Add tests. * Fix required_if. * Forgot to encode content. * Forgot to adjust type. * Allow to return CRL's content directly. * return_crl_content -> return_content (as in #65400). * Fix elements. * Fix messages. * Use required_one_of and mutually_exclusive instead of doing the checks by hand. * Fix format. * Skip tests on AIX. * Fix typo.
25 lines
779 B
YAML
25 lines
779 B
YAML
---
|
|
- name: Validate CRL 1
|
|
assert:
|
|
that:
|
|
- crl_1_check is changed
|
|
- crl_1 is changed
|
|
- crl_1_idem_check is not changed
|
|
- crl_1_idem is not changed
|
|
- crl_1_idem_content_check is not changed
|
|
- crl_1_idem_content is not changed
|
|
|
|
- name: Validate CRL 2
|
|
assert:
|
|
that:
|
|
- crl_2_check is changed
|
|
- crl_2 is changed
|
|
- crl_2_idem_check is not changed
|
|
- crl_2_idem is not changed
|
|
- crl_2_idem_update_change_check is changed
|
|
- crl_2_idem_update_change is changed
|
|
- crl_2_idem_update_check is not changed
|
|
- crl_2_idem_update is not changed
|
|
- crl_2_change_check is changed
|
|
- crl_2_change is changed
|
|
- crl_2_change.crl == lookup('file', output_dir ~ '/ca-crl2.crl', rstrip=False)
|