mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
932 B
YAML
26 lines
932 B
YAML
7 years ago
|
- name: Validate certificate (test - privatekey modulus)
|
||
|
shell: 'openssl rsa -noout -modulus -in {{ output_dir }}/privatekey.pem | openssl md5'
|
||
|
register: privatekey_modulus
|
||
|
|
||
|
- name: Validate certificate (test - certificate modulus)
|
||
|
shell: 'openssl x509 -noout -modulus -in {{ output_dir }}/cert.pem | openssl md5'
|
||
|
register: cert_modulus
|
||
|
|
||
|
- name: Validate certificate (assert)
|
||
|
assert:
|
||
|
that:
|
||
|
- cert_modulus.stdout == privatekey_modulus.stdout
|
||
|
|
||
|
- name: Validate certificate2 (test - privatekey modulus)
|
||
|
shell: 'openssl rsa -noout -modulus -in {{ output_dir }}/privatekey2.pem | openssl md5'
|
||
|
register: privatekey2_modulus
|
||
|
|
||
|
- name: Validate certificate2 (test - certificate modulus)
|
||
|
shell: 'openssl x509 -noout -modulus -in {{ output_dir }}/cert2.pem | openssl md5'
|
||
|
register: cert2_modulus
|
||
|
|
||
|
- name: Validate certificate2 (assert)
|
||
|
assert:
|
||
|
that:
|
||
|
- cert2_modulus.stdout == privatekey2_modulus.stdout
|