Skip to content

Commit

Permalink
Merge pull request #968 from t-woerner/fix_ipasmartcard_client_role_f…
Browse files Browse the repository at this point in the history
…or_ansible_test

Fix ipasmartcard client role for ansible test
  • Loading branch information
rjeffman authored Nov 18, 2022
2 parents 932856d + 18008d3 commit ef11e75
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@
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 = '''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,19 @@

DOCUMENTATION = '''
---
module: ipasmartcard_server_validate_ca_certs
module: ipasmartcard_client_validate_ca_certs
short_description: Validate CA certs
description: Validate CA certs
options:
ca_cert_files:
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 = '''
Expand All @@ -63,7 +65,8 @@
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,
)
Expand Down

0 comments on commit ef11e75

Please sign in to comment.