diff --git a/roles/ipasmartcard_server/library/ipasmartcard_server_get_vars.py b/roles/ipasmartcard_server/library/ipasmartcard_server_get_vars.py index 85897914..b34bec39 100644 --- a/roles/ipasmartcard_server/library/ipasmartcard_server_get_vars.py +++ b/roles/ipasmartcard_server/library/ipasmartcard_server_get_vars.py @@ -36,9 +36,8 @@ short_description: Get variables from ipaplatform and ipaserver and python interpreter. description: Get variables from ipaplatform and ipaserver and python interpreter. -options: author: - - Thomas Woerner + - Thomas Woerner (@t-woerner) ''' EXAMPLES = ''' diff --git a/roles/ipasmartcard_server/library/ipasmartcard_server_validate_ca_certs.py b/roles/ipasmartcard_server/library/ipasmartcard_server_validate_ca_certs.py index 7463efef..b776e584 100644 --- a/roles/ipasmartcard_server/library/ipasmartcard_server_validate_ca_certs.py +++ b/roles/ipasmartcard_server/library/ipasmartcard_server_validate_ca_certs.py @@ -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, )