mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fix spelling mistakes (comments only) (#25564)
Original Author : klemens <ka7@github.com> Taking over previous PR as per https://github.com/ansible/ansible/pull/23644#issuecomment-307334525 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
committed by
John R Barker
parent
460d932aa8
commit
b89cb95609
@@ -68,7 +68,7 @@ options:
|
||||
subjectAltName:
|
||||
required: false
|
||||
description:
|
||||
- SAN extention to attach to the certificate signing request
|
||||
- SAN extension to attach to the certificate signing request
|
||||
countryName:
|
||||
required: false
|
||||
aliases: [ 'C' ]
|
||||
@@ -114,7 +114,7 @@ EXAMPLES = '''
|
||||
privatekey_path: /etc/ssl/private/ansible.com.pem
|
||||
commonName: www.ansible.com
|
||||
|
||||
# Generate an OpenSSL Certificate Signing Request with Subject informations
|
||||
# Generate an OpenSSL Certificate Signing Request with Subject information
|
||||
- openssl_csr:
|
||||
path: /etc/ssl/csr/www.ansible.com.csr
|
||||
privatekey_path: /etc/ssl/private/ansible.com.pem
|
||||
@@ -253,7 +253,7 @@ class CertificateSigningRequest(object):
|
||||
self.changed = False
|
||||
|
||||
def dump(self):
|
||||
'''Serialize the object into a dictionnary.'''
|
||||
'''Serialize the object into a dictionary.'''
|
||||
|
||||
result = {
|
||||
'csr': self.path,
|
||||
|
||||
@@ -182,7 +182,7 @@ class PrivateKey(object):
|
||||
|
||||
|
||||
def dump(self):
|
||||
"""Serialize the object into a dictionnary."""
|
||||
"""Serialize the object into a dictionary."""
|
||||
|
||||
result = {
|
||||
'size': self.size,
|
||||
|
||||
@@ -53,7 +53,7 @@ options:
|
||||
privatekey_path:
|
||||
required: true
|
||||
description:
|
||||
- Path to the TLS/SSL private key from which to genereate the public key.
|
||||
- Path to the TLS/SSL private key from which to generate the public key.
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
@@ -153,7 +153,7 @@ class PublicKey(object):
|
||||
self.changed = False
|
||||
|
||||
def dump(self):
|
||||
"""Serialize the object into a dictionnary."""
|
||||
"""Serialize the object into a dictionary."""
|
||||
|
||||
result = {
|
||||
'privatekey': self.privatekey_path,
|
||||
|
||||
Reference in New Issue
Block a user