Merge pull request #969 from t-woerner/fix_ipasmartcard_server_role_for_ansible_test

Fix ipasmartcard server role for ansible test
This commit is contained in:
Rafael Guterres Jeffman
2022-11-18 11:07:49 -03:00
committed by GitHub
2 changed files with 7 additions and 5 deletions

View File

@@ -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 = '''

View File

@@ -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,
)