From 4a18ad03c806f5dc506f028c821646f8d1c00c75 Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Wed, 12 Apr 2023 12:52:14 +0200 Subject: [PATCH] utils/templates/{README*.md.in,test_module*.yml.in}: Use true and false The values "yes" and "no" will not be valid in the future for bool parameters. Therefore "yes" and "no" have been replaced by "true" and "false". --- utils/templates/README-module+member.md.in | 10 +++++----- utils/templates/README-module.md.in | 6 +++--- utils/templates/test_module+member.yml.in | 4 ++-- utils/templates/test_module.yml.in | 4 ++-- utils/templates/test_module_client_context.yml.in | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/utils/templates/README-module+member.md.in b/utils/templates/README-module+member.md.in index 6fda8f94..7ee97d9c 100644 --- a/utils/templates/README-module+member.md.in +++ b/utils/templates/README-module+member.md.in @@ -45,7 +45,7 @@ Example playbook to make sure $name "NAME" is present: --- - name: Playbook to manage IPA $name. hosts: ipaserver - become: no + become: false tasks: - ipa$name: @@ -60,7 +60,7 @@ Example playbook to make sure $name "NAME" member PARAMETER2 VALUE is present: --- - name: Playbook to manage IPA $name PARAMETER2 member. hosts: ipaserver - become: no + become: false tasks: - ipa$name: @@ -78,7 +78,7 @@ Example playbook to make sure $name "NAME" member PARAMETER2 VALUE is absent: --- - name: Playbook to manage IPA $name PARAMETER2 member. hosts: ipaserver - become: no + become: false tasks: - ipa$name: @@ -96,7 +96,7 @@ Example playbook to make sure $name "NAME" is absent: --- - name: Playbook to manage IPA $name. hosts: ipaserver - become: no + become: false tasks: - ipa$name: @@ -117,7 +117,7 @@ Variable | Description | Required `ipaadmin_principal` | The admin principal is a string and defaults to `admin` | no `ipaadmin_password` | The admin password is a string and is required if there is no admin ticket available on the node | no `ipaapi_context` | The context in which the module will execute. Executing in a server context is preferred. If not provided context will be determined by the execution environment. Valid values are `server` and `client`. | no -`ipaapi_ldap_cache` | Use LDAP cache for IPA connection. The bool setting defaults to yes. (bool) | no +`ipaapi_ldap_cache` | Use LDAP cache for IPA connection. The bool setting defaults to true. (bool) | no `name` \| `ALIAS` | The list of $name name strings. | yes `PARAMETER1` \| `API_PARAMETER_NAME` | DESCRIPTION | TYPE `PARAMETER2` \| `API_PARAMETER_NAME` | DESCRIPTION | TYPE diff --git a/utils/templates/README-module.md.in b/utils/templates/README-module.md.in index 08faf505..1b8635cd 100644 --- a/utils/templates/README-module.md.in +++ b/utils/templates/README-module.md.in @@ -45,7 +45,7 @@ Example playbook to make sure $name "NAME" is present: --- - name: Playbook to manage IPA $name. hosts: ipaserver - become: no + become: false tasks: - ipa$name: @@ -61,7 +61,7 @@ Example playbook to make sure $name "NAME" is absent: --- - name: Playbook to manage IPA $name. hosts: ipaserver - become: no + become: false tasks: - ipa$name: @@ -82,7 +82,7 @@ Variable | Description | Required `ipaadmin_principal` | The admin principal is a string and defaults to `admin` | no `ipaadmin_password` | The admin password is a string and is required if there is no admin ticket available on the node | no `ipaapi_context` | The context in which the module will execute. Executing in a server context is preferred. If not provided context will be determined by the execution environment. Valid values are `server` and `client`. | no -`ipaapi_ldap_cache` | Use LDAP cache for IPA connection. The bool setting defaults to yes. (bool) | no +`ipaapi_ldap_cache` | Use LDAP cache for IPA connection. The bool setting defaults to true. (bool) | no `name` \| `ALIAS` | The list of $name name strings. | yes `PARAMETER1` \| `API_PARAMETER_NAME` | DESCRIPTION | TYPE `PARAMETER2` \| `API_PARAMETER_NAME` | DESCRIPTION | TYPE diff --git a/utils/templates/test_module+member.yml.in b/utils/templates/test_module+member.yml.in index 01012078..cafbbf64 100644 --- a/utils/templates/test_module+member.yml.in +++ b/utils/templates/test_module+member.yml.in @@ -3,8 +3,8 @@ hosts: "{{ ipa_test_host | default('ipaserver') }}" # Change "become" or "gather_facts" to "yes", # if you test playbook requires any. - become: no - gather_facts: no + become: false + gather_facts: false tasks: diff --git a/utils/templates/test_module.yml.in b/utils/templates/test_module.yml.in index 2ad53cc2..b7e82fbe 100644 --- a/utils/templates/test_module.yml.in +++ b/utils/templates/test_module.yml.in @@ -3,8 +3,8 @@ hosts: "{{ ipa_test_host | default('ipaserver') }}" # Change "become" or "gather_facts" to "yes", # if you test playbook requires any. - become: no - gather_facts: no + become: false + gather_facts: false tasks: diff --git a/utils/templates/test_module_client_context.yml.in b/utils/templates/test_module_client_context.yml.in index ee8c6789..38ac7ffb 100644 --- a/utils/templates/test_module_client_context.yml.in +++ b/utils/templates/test_module_client_context.yml.in @@ -3,8 +3,8 @@ hosts: ipaclients, ipaserver # Change "become" or "gather_facts" to "yes", # if you test playbook requires any. - become: no - gather_facts: no + become: false + gather_facts: false tasks: - name: Include FreeIPA facts. -- GitLab