Skip to content
Snippets Groups Projects
Unverified Commit 118d754d authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman Committed by GitHub
Browse files

Merge pull request #969 from t-woerner/fix_ipasmartcard_server_role_for_ansible_test

Fix ipasmartcard server role for ansible test
parents ef5ae121 903e002e
Branches
Tags
No related merge requests found
...@@ -36,9 +36,8 @@ short_description: ...@@ -36,9 +36,8 @@ short_description:
Get variables from ipaplatform and ipaserver and python interpreter. Get variables from ipaplatform and ipaserver and python interpreter.
description: description:
Get variables from ipaplatform and ipaserver and python interpreter. Get variables from ipaplatform and ipaserver and python interpreter.
options:
author: author:
- Thomas Woerner - Thomas Woerner (@t-woerner)
''' '''
EXAMPLES = ''' EXAMPLES = '''
......
...@@ -41,9 +41,11 @@ options: ...@@ -41,9 +41,11 @@ options:
description: description:
List of files containing CA certificates for the service certificate List of files containing CA certificates for the service certificate
files files
required: yes type: list
elements: str
required: no
author: author:
- Thomas Woerner - Thomas Woerner (@t-woerner)
''' '''
EXAMPLES = ''' EXAMPLES = '''
...@@ -63,7 +65,8 @@ except ImportError: ...@@ -63,7 +65,8 @@ except ImportError:
def main(): def main():
ansible_module = AnsibleModule( ansible_module = AnsibleModule(
argument_spec=dict( 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, supports_check_mode=False,
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment