Use FQCN in examples. (#12)

This commit is contained in:
Felix Fontein
2020-03-31 16:23:45 +02:00
committed by GitHub
parent bffd7b0ce9
commit 4d157b93ee
24 changed files with 123 additions and 123 deletions

View File

@@ -84,16 +84,16 @@ seealso:
EXAMPLES = r'''
- name: Generate Diffie-Hellman parameters with the default size (4096 bits)
openssl_dhparam:
community.crypto.openssl_dhparam:
path: /etc/ssl/dhparams.pem
- name: Generate DH Parameters with a different size (2048 bits)
openssl_dhparam:
community.crypto.openssl_dhparam:
path: /etc/ssl/dhparams.pem
size: 2048
- name: Force regenerate an DH parameters if they already exist
openssl_dhparam:
community.crypto.openssl_dhparam:
path: /etc/ssl/dhparams.pem
force: yes
'''