mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-07-30 11:24:50 +00:00
Merge pull request #968 from t-woerner/fix_ipasmartcard_client_role_for_ansible_test
Fix ipasmartcard client role for ansible test
This commit is contained in:
@@ -36,9 +36,8 @@ short_description:
|
|||||||
Get variables from ipaplatform and python interpreter used for the module.
|
Get variables from ipaplatform and python interpreter used for the module.
|
||||||
description:
|
description:
|
||||||
Get variables from ipaplatform and python interpreter used for the module.
|
Get variables from ipaplatform and python interpreter used for the module.
|
||||||
options:
|
|
||||||
author:
|
author:
|
||||||
- Thomas Woerner
|
- Thomas Woerner (@t-woerner)
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ ANSIBLE_METADATA = {
|
|||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: ipasmartcard_server_validate_ca_certs
|
module: ipasmartcard_client_validate_ca_certs
|
||||||
short_description: Validate CA certs
|
short_description: Validate CA certs
|
||||||
description: Validate CA certs
|
description: Validate CA certs
|
||||||
options:
|
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:
|
|||||||
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,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user