mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Normalize more booleans. (#5247)
This commit is contained in:
@@ -112,8 +112,8 @@ EXAMPLES = r'''
|
||||
ipa_host: ipa.example.com
|
||||
ipa_user: admin
|
||||
ipa_pass: topsecret
|
||||
validate_certs: False
|
||||
random_password: True
|
||||
validate_certs: false
|
||||
random_password: true
|
||||
|
||||
- name: Ensure host is disabled
|
||||
community.general.ipa_host:
|
||||
@@ -146,7 +146,7 @@ EXAMPLES = r'''
|
||||
ipa_host: ipa.example.com
|
||||
ipa_user: admin
|
||||
ipa_pass: topsecret
|
||||
update_dns: True
|
||||
update_dns: true
|
||||
'''
|
||||
|
||||
RETURN = r'''
|
||||
|
||||
@@ -66,7 +66,7 @@ options:
|
||||
description:
|
||||
- Force replace the existent vault on IPA server.
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
choices: ["True", "False"]
|
||||
validate_certs:
|
||||
description:
|
||||
@@ -115,7 +115,7 @@ EXAMPLES = r'''
|
||||
ipa_host: ipa.example.com
|
||||
ipa_user: admin
|
||||
ipa_pass: topsecret
|
||||
replace: True
|
||||
replace: true
|
||||
|
||||
- name: Get vault info if already exists
|
||||
community.general.ipa_vault:
|
||||
|
||||
Reference in New Issue
Block a user