1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-05-06 01:55:51 +00:00

Adjust booleans in misc modules. (#5160)

This commit is contained in:
Felix Fontein 2022-08-24 20:00:26 +02:00 committed by GitHub
parent 7533f9ac26
commit 403c4f7477
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 110 additions and 110 deletions

View file

@ -36,15 +36,15 @@ options:
type: str
use_ssl:
description:
- If C(no), an HTTP connection will be used instead of the default HTTPS connection.
- If C(false), an HTTP connection will be used instead of the default HTTPS connection.
type: bool
default: 'yes'
default: true
validate_certs:
description:
- If C(no), SSL certificates will not be validated.
- This should only set to C(no) when used on personally controlled sites using self-signed certificates.
- If C(false), SSL certificates will not be validated.
- This should only set to C(false) when used on personally controlled sites using self-signed certificates.
type: bool
default: 'yes'
default: true
author:
- Dag Wieers (@dagwieers)
todo:
@ -60,7 +60,7 @@ EXAMPLES = r'''
host: cobbler01
username: cobbler
password: MySuperSecureP4sswOrd
run_once: yes
run_once: true
delegate_to: localhost
'''

View file

@ -36,15 +36,15 @@ options:
type: str
use_ssl:
description:
- If C(no), an HTTP connection will be used instead of the default HTTPS connection.
- If C(false), an HTTP connection will be used instead of the default HTTPS connection.
type: bool
default: 'yes'
default: true
validate_certs:
description:
- If C(no), SSL certificates will not be validated.
- This should only set to C(no) when used on personally controlled sites using self-signed certificates.
- If C(false), SSL certificates will not be validated.
- This should only set to C(false) when used on personally controlled sites using self-signed certificates.
type: bool
default: 'yes'
default: true
name:
description:
- The system name to manage.
@ -62,7 +62,7 @@ options:
- Sync on changes.
- Concurrently syncing Cobbler is bound to fail.
type: bool
default: no
default: false
state:
description:
- Whether the system should be present, absent or a query is made.
@ -101,7 +101,7 @@ EXAMPLES = r'''
password: ins3965!
name: bdsol-aci51-apic1.cisco.com
properties:
netboot_enabled: yes
netboot_enabled: true
state: present
delegate_to: localhost