diff --git a/roles/ipasmartcard_client/library/ipasmartcard_client_get_vars.py b/roles/ipasmartcard_client/library/ipasmartcard_client_get_vars.py index 6c83419d8ded8699a0968cbd05b972cd0e861696..46c4caebd86dc3c6165dfd89d8ed8370396738a1 100644 --- a/roles/ipasmartcard_client/library/ipasmartcard_client_get_vars.py +++ b/roles/ipasmartcard_client/library/ipasmartcard_client_get_vars.py @@ -36,9 +36,8 @@ short_description: Get variables from ipaplatform and python interpreter used for the module. description: Get variables from ipaplatform and python interpreter used for the module. -options: author: - - Thomas Woerner + - Thomas Woerner (@t-woerner) ''' EXAMPLES = ''' diff --git a/roles/ipasmartcard_client/library/ipasmartcard_client_validate_ca_certs.py b/roles/ipasmartcard_client/library/ipasmartcard_client_validate_ca_certs.py index 7463efef423995ec5124fabf05964c985fac8762..0501d38896948e800007fa7aaef90d80e50d3786 100644 --- a/roles/ipasmartcard_client/library/ipasmartcard_client_validate_ca_certs.py +++ b/roles/ipasmartcard_client/library/ipasmartcard_client_validate_ca_certs.py @@ -33,7 +33,7 @@ ANSIBLE_METADATA = { DOCUMENTATION = ''' --- -module: ipasmartcard_server_validate_ca_certs +module: ipasmartcard_client_validate_ca_certs short_description: Validate CA certs description: Validate CA certs options: @@ -41,9 +41,11 @@ options: description: List of files containing CA certificates for the service certificate files - required: yes + type: list + elements: str + required: no author: - - Thomas Woerner + - Thomas Woerner (@t-woerner) ''' EXAMPLES = ''' @@ -63,7 +65,8 @@ except ImportError: def main(): ansible_module = AnsibleModule( argument_spec=dict( - ca_cert_files=dict(required=False, type='list', default=[]), + ca_cert_files=dict(required=False, type='list', elements='str', + default=[]), ), supports_check_mode=False, )