mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
More validate module fixes (#39097)
* Fix type bool DOCUMENTATION issues
This commit is contained in:
parent
b533ebe20d
commit
7c4b91844d
118 changed files with 187 additions and 398 deletions
|
@ -70,7 +70,7 @@ options:
|
||||||
description: Whether or not to override values of minimum and/or maximum tasks if it's already set.
|
description: Whether or not to override values of minimum and/or maximum tasks if it's already set.
|
||||||
required: no
|
required: no
|
||||||
default: no
|
default: no
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
version_added: "2.6"
|
version_added: "2.6"
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- aws
|
- aws
|
||||||
|
|
|
@ -57,6 +57,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- To modify bandwidth or location the connection will need to be deleted and recreated.
|
- To modify bandwidth or location the connection will need to be deleted and recreated.
|
||||||
By default this will not happen - this option must be set to True.
|
By default this will not happen - this option must be set to True.
|
||||||
|
type: bool
|
||||||
"""
|
"""
|
||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
|
|
|
@ -67,7 +67,7 @@ options:
|
||||||
specified. If no tags are specified, it removes all existing tags for the distribution. When I(purge_tags=no), existing tags are kept and I(tags)
|
specified. If no tags are specified, it removes all existing tags for the distribution. When I(purge_tags=no), existing tags are kept and I(tags)
|
||||||
are added, if specified.
|
are added, if specified.
|
||||||
default: 'no'
|
default: 'no'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
|
|
||||||
alias:
|
alias:
|
||||||
description:
|
description:
|
||||||
|
@ -85,7 +85,7 @@ options:
|
||||||
- Specifies whether existing aliases will be removed before adding new aliases. When I(purge_aliases=yes), existing aliases are removed and I(aliases)
|
- Specifies whether existing aliases will be removed before adding new aliases. When I(purge_aliases=yes), existing aliases are removed and I(aliases)
|
||||||
are added.
|
are added.
|
||||||
default: 'no'
|
default: 'no'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
|
|
||||||
default_root_object:
|
default_root_object:
|
||||||
description:
|
description:
|
||||||
|
@ -245,7 +245,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- A boolean value that specifies whether the distribution is enabled or disabled.
|
- A boolean value that specifies whether the distribution is enabled or disabled.
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
|
|
||||||
viewer_certificate:
|
viewer_certificate:
|
||||||
description:
|
description:
|
||||||
|
@ -280,13 +280,13 @@ options:
|
||||||
ipv6_enabled:
|
ipv6_enabled:
|
||||||
description:
|
description:
|
||||||
- Determines whether IPv6 support is enabled or not.
|
- Determines whether IPv6 support is enabled or not.
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
|
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
- Specifies whether the module waits until the distribution has completed processing the creation or update.
|
- Specifies whether the module waits until the distribution has completed processing the creation or update.
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
|
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
|
|
|
@ -44,7 +44,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Wait for the AMI to be in state 'available' before returning.
|
- Wait for the AMI to be in state 'available' before returning.
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- How long before wait gives up, in seconds.
|
- How long before wait gives up, in seconds.
|
||||||
|
@ -62,7 +62,7 @@ options:
|
||||||
- Flag indicating that the bundling process should not attempt to shutdown the instance before bundling. If this flag is True, the
|
- Flag indicating that the bundling process should not attempt to shutdown the instance before bundling. If this flag is True, the
|
||||||
responsibility of maintaining file system integrity is left to the owner of the instance.
|
responsibility of maintaining file system integrity is left to the owner of the instance.
|
||||||
default: no
|
default: no
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
image_id:
|
image_id:
|
||||||
description:
|
description:
|
||||||
- Image ID to be deregistered.
|
- Image ID to be deregistered.
|
||||||
|
@ -77,7 +77,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Delete snapshots when deregistering the AMI.
|
- Delete snapshots when deregistering the AMI.
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
tags:
|
tags:
|
||||||
description:
|
description:
|
||||||
- A dictionary of tags to add to the new image; '{"key":"value"}' and '{"key":"value","key":"value"}'
|
- A dictionary of tags to add to the new image; '{"key":"value"}' and '{"key":"value","key":"value"}'
|
||||||
|
|
|
@ -39,7 +39,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Describe attributes (like launchPermission) of the images found.
|
- Describe attributes (like launchPermission) of the images found.
|
||||||
default: no
|
default: no
|
||||||
choices: ["yes", "no"]
|
type: bool
|
||||||
|
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- aws
|
- aws
|
||||||
|
|
|
@ -64,6 +64,7 @@ options:
|
||||||
won't change
|
won't change
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
version_added: 2.2
|
version_added: 2.2
|
||||||
|
type: bool
|
||||||
force_detach:
|
force_detach:
|
||||||
description:
|
description:
|
||||||
- Force detachment of the interface. This applies either when explicitly detaching the interface by setting instance_id
|
- Force detachment of the interface. This applies either when explicitly detaching the interface by setting instance_id
|
||||||
|
|
|
@ -100,7 +100,7 @@ options:
|
||||||
tags will not be modified.
|
tags will not be modified.
|
||||||
required: false
|
required: false
|
||||||
default: yes
|
default: yes
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
|
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- aws
|
- aws
|
||||||
|
|
|
@ -43,7 +43,7 @@ options:
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
- wait for the snapshot to be ready
|
- wait for the snapshot to be ready
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
default: yes
|
default: yes
|
||||||
version_added: "1.5.1"
|
version_added: "1.5.1"
|
||||||
|
|
|
@ -62,7 +62,7 @@ options:
|
||||||
behaviour from AWS.
|
behaviour from AWS.
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
choices: ["yes", "no"]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- Used in conjunction with wait. Number of seconds to wait for status.
|
- Used in conjunction with wait. Number of seconds to wait for status.
|
||||||
|
|
|
@ -35,7 +35,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Remove CIDRs that are associated with the VPC and are not specified in C(cidr_block).
|
- Remove CIDRs that are associated with the VPC and are not specified in C(cidr_block).
|
||||||
default: no
|
default: no
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
version_added: '2.5'
|
version_added: '2.5'
|
||||||
tenancy:
|
tenancy:
|
||||||
description:
|
description:
|
||||||
|
@ -46,12 +46,12 @@ options:
|
||||||
description:
|
description:
|
||||||
- Whether to enable AWS DNS support.
|
- Whether to enable AWS DNS support.
|
||||||
default: yes
|
default: yes
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
dns_hostnames:
|
dns_hostnames:
|
||||||
description:
|
description:
|
||||||
- Whether to enable AWS hostname support.
|
- Whether to enable AWS hostname support.
|
||||||
default: yes
|
default: yes
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
dhcp_opts_id:
|
dhcp_opts_id:
|
||||||
description:
|
description:
|
||||||
- the id of the DHCP options to use for this vpc
|
- the id of the DHCP options to use for this vpc
|
||||||
|
|
|
@ -27,13 +27,13 @@ options:
|
||||||
- Set this to true if you want detailed information about the services.
|
- Set this to true if you want detailed information about the services.
|
||||||
required: false
|
required: false
|
||||||
default: 'false'
|
default: 'false'
|
||||||
choices: ['true', 'false']
|
type: bool
|
||||||
events:
|
events:
|
||||||
description:
|
description:
|
||||||
- Whether to return ECS service events. Only has an effect if C(details) is true.
|
- Whether to return ECS service events. Only has an effect if C(details) is true.
|
||||||
required: false
|
required: false
|
||||||
default: 'true'
|
default: 'true'
|
||||||
choices: ['true', 'false']
|
type: bool
|
||||||
version_added: "2.6"
|
version_added: "2.6"
|
||||||
cluster:
|
cluster:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -32,7 +32,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- "Whether or not to enable access logs. When true, I(access_logs_s3_bucket) must be set."
|
- "Whether or not to enable access logs. When true, I(access_logs_s3_bucket) must be set."
|
||||||
required: false
|
required: false
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
access_logs_s3_bucket:
|
access_logs_s3_bucket:
|
||||||
description:
|
description:
|
||||||
- The name of the S3 bucket for the access logs. This attribute is required if access logs in Amazon S3 are enabled. The bucket must exist in the same
|
- The name of the S3 bucket for the access logs. This attribute is required if access logs in Amazon S3 are enabled. The bucket must exist in the same
|
||||||
|
@ -47,7 +47,7 @@ options:
|
||||||
- Indicates whether deletion protection for the ELB is enabled.
|
- Indicates whether deletion protection for the ELB is enabled.
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
idle_timeout:
|
idle_timeout:
|
||||||
description:
|
description:
|
||||||
- The number of seconds to wait before an idle connection is closed.
|
- The number of seconds to wait before an idle connection is closed.
|
||||||
|
@ -68,14 +68,14 @@ options:
|
||||||
- If yes, existing listeners will be purged from the ELB to match exactly what is defined by I(listeners) parameter. If the I(listeners) parameter is
|
- If yes, existing listeners will be purged from the ELB to match exactly what is defined by I(listeners) parameter. If the I(listeners) parameter is
|
||||||
not set then listeners will not be modified
|
not set then listeners will not be modified
|
||||||
default: yes
|
default: yes
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
purge_tags:
|
purge_tags:
|
||||||
description:
|
description:
|
||||||
- If yes, existing tags will be purged from the resource to match exactly what is defined by I(tags) parameter. If the I(tags) parameter is not set then
|
- If yes, existing tags will be purged from the resource to match exactly what is defined by I(tags) parameter. If the I(tags) parameter is not set then
|
||||||
tags will not be modified.
|
tags will not be modified.
|
||||||
required: false
|
required: false
|
||||||
default: yes
|
default: yes
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
subnets:
|
subnets:
|
||||||
description:
|
description:
|
||||||
- A list of the IDs of the subnets to attach to the load balancer. You can specify only one subnet per Availability Zone. You must specify subnets from
|
- A list of the IDs of the subnets to attach to the load balancer. You can specify only one subnet per Availability Zone. You must specify subnets from
|
||||||
|
|
|
@ -19,7 +19,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- The default behaviour for targets that are unused is to leave them registered. If instead you would like to remove them
|
- The default behaviour for targets that are unused is to leave them registered. If instead you would like to remove them
|
||||||
set I(deregister_unused) to yes.
|
set I(deregister_unused) to yes.
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
target_az:
|
target_az:
|
||||||
description:
|
description:
|
||||||
- An Availability Zone or all. This determines whether the target receives traffic from the load balancer nodes in the specified
|
- An Availability Zone or all. This determines whether the target receives traffic from the load balancer nodes in the specified
|
||||||
|
|
|
@ -78,7 +78,7 @@ options:
|
||||||
tags will not be modified.
|
tags will not be modified.
|
||||||
required: false
|
required: false
|
||||||
default: yes
|
default: yes
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Create or destroy the target group.
|
- Create or destroy the target group.
|
||||||
|
@ -87,7 +87,7 @@ options:
|
||||||
stickiness_enabled:
|
stickiness_enabled:
|
||||||
description:
|
description:
|
||||||
- Indicates whether sticky sessions are enabled.
|
- Indicates whether sticky sessions are enabled.
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
stickiness_lb_cookie_duration:
|
stickiness_lb_cookie_duration:
|
||||||
description:
|
description:
|
||||||
- The time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the load
|
- The time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the load
|
||||||
|
|
|
@ -38,7 +38,7 @@ options:
|
||||||
- Whether to wait for the tasks to finish before returning.
|
- Whether to wait for the tasks to finish before returning.
|
||||||
default: True
|
default: True
|
||||||
required: False
|
required: False
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- python = 2.7
|
- python = 2.7
|
||||||
- requests >= 2.5.0
|
- requests >= 2.5.0
|
||||||
|
|
|
@ -41,7 +41,7 @@ options:
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
- Whether to wait for the tasks to finish before returning.
|
- Whether to wait for the tasks to finish before returning.
|
||||||
choices: [ True, False ]
|
type: bool
|
||||||
default: True
|
default: True
|
||||||
required: False
|
required: False
|
||||||
requirements:
|
requirements:
|
||||||
|
|
|
@ -59,7 +59,7 @@ options:
|
||||||
enabled:
|
enabled:
|
||||||
description:
|
description:
|
||||||
- Whether the firewall policy is enabled or disabled
|
- Whether the firewall policy is enabled or disabled
|
||||||
type: bool
|
choices: [True, False]
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
requirements:
|
requirements:
|
||||||
- python = 2.7
|
- python = 2.7
|
||||||
|
|
|
@ -45,7 +45,7 @@ options:
|
||||||
wait:
|
wait:
|
||||||
description:
|
description:
|
||||||
- Whether to wait for the tasks to finish before returning.
|
- Whether to wait for the tasks to finish before returning.
|
||||||
choices: [ True, False ]
|
type: bool
|
||||||
default: True
|
default: True
|
||||||
required: False
|
required: False
|
||||||
requirements:
|
requirements:
|
||||||
|
|
|
@ -39,7 +39,7 @@ options:
|
||||||
- Whether to wait for the provisioning tasks to finish before returning.
|
- Whether to wait for the provisioning tasks to finish before returning.
|
||||||
default: True
|
default: True
|
||||||
required: False
|
required: False
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- python = 2.7
|
- python = 2.7
|
||||||
- requests >= 2.5.0
|
- requests >= 2.5.0
|
||||||
|
|
|
@ -50,7 +50,7 @@ options:
|
||||||
conserve_mode:
|
conserve_mode:
|
||||||
description:
|
description:
|
||||||
- Whether the network offering has IP conserve mode enabled.
|
- Whether the network offering has IP conserve mode enabled.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
details:
|
details:
|
||||||
description:
|
description:
|
||||||
- Network offering details in key/value pairs.
|
- Network offering details in key/value pairs.
|
||||||
|
@ -69,7 +69,7 @@ options:
|
||||||
- If true keepalive will be turned on in the loadbalancer.
|
- If true keepalive will be turned on in the loadbalancer.
|
||||||
- At the time of writing this has only an effect on haproxy.
|
- At the time of writing this has only an effect on haproxy.
|
||||||
- the mode http and httpclose options are unset in the haproxy conf file.
|
- the mode http and httpclose options are unset in the haproxy conf file.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
max_connections:
|
max_connections:
|
||||||
description:
|
description:
|
||||||
- Maximum number of concurrent connections supported by the network offering.
|
- Maximum number of concurrent connections supported by the network offering.
|
||||||
|
@ -92,11 +92,11 @@ options:
|
||||||
description:
|
description:
|
||||||
- Wheter the network offering supports specifying IP ranges.
|
- Wheter the network offering supports specifying IP ranges.
|
||||||
- Defaulted to C(no) by the API if not specified.
|
- Defaulted to C(no) by the API if not specified.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
specify_vlan:
|
specify_vlan:
|
||||||
description:
|
description:
|
||||||
- Whether the network offering supports vlans or not.
|
- Whether the network offering supports vlans or not.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
extends_documentation_fragment: cloudstack
|
extends_documentation_fragment: cloudstack
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ options:
|
||||||
limit_cpu_usage:
|
limit_cpu_usage:
|
||||||
description:
|
description:
|
||||||
- Restrict the CPU usage to committed service offering.
|
- Restrict the CPU usage to committed service offering.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
deployment_planner:
|
deployment_planner:
|
||||||
description:
|
description:
|
||||||
- The deployment planner heuristics used to deploy a VM of this offering.
|
- The deployment planner heuristics used to deploy a VM of this offering.
|
||||||
|
@ -77,13 +77,13 @@ options:
|
||||||
is_system:
|
is_system:
|
||||||
description:
|
description:
|
||||||
- Whether it is a system VM offering or not.
|
- Whether it is a system VM offering or not.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
is_volatile:
|
is_volatile:
|
||||||
description:
|
description:
|
||||||
- Whether the virtual machine needs to be volatile or not.
|
- Whether the virtual machine needs to be volatile or not.
|
||||||
- Every reboot of VM the root disk is detached then destroyed and a fresh root disk is created and attached to VM.
|
- Every reboot of VM the root disk is detached then destroyed and a fresh root disk is created and attached to VM.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
memory:
|
memory:
|
||||||
description:
|
description:
|
||||||
|
@ -99,7 +99,7 @@ options:
|
||||||
offer_ha:
|
offer_ha:
|
||||||
description:
|
description:
|
||||||
- Whether HA is set for the service offering.
|
- Whether HA is set for the service offering.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
provisioning_type:
|
provisioning_type:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -59,12 +59,12 @@ options:
|
||||||
description:
|
description:
|
||||||
- Enable Dead Peer Detection.
|
- Enable Dead Peer Detection.
|
||||||
- Disabled per default by the API on creation if not set.
|
- Disabled per default by the API on creation if not set.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
force_encap:
|
force_encap:
|
||||||
description:
|
description:
|
||||||
- Force encapsulation for NAT traversal.
|
- Force encapsulation for NAT traversal.
|
||||||
- Disabled per default by the API on creation if not set.
|
- Disabled per default by the API on creation if not set.
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- State of the VPN customer gateway.
|
- State of the VPN customer gateway.
|
||||||
|
|
|
@ -49,7 +49,7 @@ options:
|
||||||
Modify was added in version 2.1
|
Modify was added in version 2.1
|
||||||
autostart:
|
autostart:
|
||||||
required: false
|
required: false
|
||||||
choices: ["yes", "no"]
|
type: bool
|
||||||
description:
|
description:
|
||||||
- Specify if a given network should be started automatically on system boot.
|
- Specify if a given network should be started automatically on system boot.
|
||||||
uri:
|
uri:
|
||||||
|
|
|
@ -49,7 +49,7 @@ options:
|
||||||
See examples.
|
See examples.
|
||||||
autostart:
|
autostart:
|
||||||
required: false
|
required: false
|
||||||
choices: ["yes", "no"]
|
type: bool
|
||||||
description:
|
description:
|
||||||
- Specify if a given storage pool should be started automatically on system boot.
|
- Specify if a given storage pool should be started automatically on system boot.
|
||||||
uri:
|
uri:
|
||||||
|
|
|
@ -87,7 +87,7 @@ options:
|
||||||
- wait for the instance to be in state 'running' before returning
|
- wait for the instance to be in state 'running' before returning
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
|
|
@ -122,7 +122,7 @@ options:
|
||||||
- wait for the instance to be in state 'running' before returning
|
- wait for the instance to be in state 'running' before returning
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
|
|
@ -168,7 +168,7 @@ options:
|
||||||
- wait for the instance to be in state 'running' before returning
|
- wait for the instance to be in state 'running' before returning
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
|
|
@ -76,7 +76,7 @@ options:
|
||||||
- wait for the instance to be in state 'running' before returning
|
- wait for the instance to be in state 'running' before returning
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
|
|
@ -68,7 +68,7 @@ options:
|
||||||
- wait for the instance to be in state 'running' before returning
|
- wait for the instance to be in state 'running' before returning
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
|
|
@ -47,7 +47,7 @@ options:
|
||||||
- wait for the datacenter to be created before returning
|
- wait for the datacenter to be created before returning
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
|
|
@ -48,7 +48,7 @@ options:
|
||||||
- wait for the operation to complete before returning
|
- wait for the operation to complete before returning
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
|
|
@ -73,7 +73,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Whether or not to increment a single number in the name for created virtual machines.
|
- Whether or not to increment a single number in the name for created virtual machines.
|
||||||
default: yes
|
default: yes
|
||||||
choices: ["yes", "no"]
|
type: bool
|
||||||
instance_ids:
|
instance_ids:
|
||||||
description:
|
description:
|
||||||
- list of instance ids, currently only used when state='absent' to remove instances.
|
- list of instance ids, currently only used when state='absent' to remove instances.
|
||||||
|
@ -91,7 +91,7 @@ options:
|
||||||
- wait for the datacenter to be created before returning
|
- wait for the datacenter to be created before returning
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
|
|
@ -44,7 +44,7 @@ options:
|
||||||
- wait for the operation to complete before returning
|
- wait for the operation to complete before returning
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
description:
|
description:
|
||||||
- how long before wait gives up, in seconds
|
- how long before wait gives up, in seconds
|
||||||
|
|
|
@ -62,9 +62,7 @@ options:
|
||||||
wait:
|
wait:
|
||||||
required: false
|
required: false
|
||||||
default: "no"
|
default: "no"
|
||||||
choices:
|
type: bool
|
||||||
- "yes"
|
|
||||||
- "no"
|
|
||||||
description:
|
description:
|
||||||
- Wait for the load balancer to become active before returning
|
- Wait for the load balancer to become active before returning
|
||||||
wait_timeout:
|
wait_timeout:
|
||||||
|
|
|
@ -24,9 +24,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Optionally clear existing metadata when applying metadata to existing containers.
|
- Optionally clear existing metadata when applying metadata to existing containers.
|
||||||
Selecting this option is only appropriate when setting type=meta
|
Selecting this option is only appropriate when setting type=meta
|
||||||
choices:
|
type: bool
|
||||||
- "yes"
|
|
||||||
- "no"
|
|
||||||
default: "no"
|
default: "no"
|
||||||
container:
|
container:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -60,7 +60,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- If yes, create this alarm, but leave it in an inactive state. Defaults to
|
- If yes, create this alarm, but leave it in an inactive state. Defaults to
|
||||||
no.
|
no.
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
metadata:
|
metadata:
|
||||||
description:
|
description:
|
||||||
- Arbitrary key/value pairs to accompany the alarm. Must be a hash of String
|
- Arbitrary key/value pairs to accompany the alarm. Must be a hash of String
|
||||||
|
|
|
@ -88,7 +88,7 @@ options:
|
||||||
disabled:
|
disabled:
|
||||||
description:
|
description:
|
||||||
- If "yes", ensure the check is created, but don't actually use it yet.
|
- If "yes", ensure the check is created, but don't actually use it yet.
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
metadata:
|
metadata:
|
||||||
description:
|
description:
|
||||||
- Hash of arbitrary key-value pairs to accompany this check if it fires.
|
- Hash of arbitrary key-value pairs to accompany this check if it fires.
|
||||||
|
|
|
@ -24,7 +24,7 @@ author: Jasper Lievisse Adriaanse (@jasperla)
|
||||||
options:
|
options:
|
||||||
force:
|
force:
|
||||||
required: false
|
required: false
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
description:
|
description:
|
||||||
- Force a given operation (where supported by imgadm(1M)).
|
- Force a given operation (where supported by imgadm(1M)).
|
||||||
pool:
|
pool:
|
||||||
|
|
|
@ -36,12 +36,12 @@ options:
|
||||||
description:
|
description:
|
||||||
- Password will only be changed with enforcement.
|
- Password will only be changed with enforcement.
|
||||||
default: no
|
default: no
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
api_enabled:
|
api_enabled:
|
||||||
description:
|
description:
|
||||||
- Whether the API is enabled or not.
|
- Whether the API is enabled or not.
|
||||||
default: yes
|
default: yes
|
||||||
choices: [ yes, no ]
|
type: bool
|
||||||
acls:
|
acls:
|
||||||
description:
|
description:
|
||||||
- List of ACLs this users should have, see U(https://www.vultr.com/api/#user_user_list).
|
- List of ACLs this users should have, see U(https://www.vultr.com/api/#user_user_list).
|
||||||
|
|
|
@ -54,7 +54,7 @@ options:
|
||||||
force:
|
force:
|
||||||
required: false
|
required: false
|
||||||
default: False
|
default: False
|
||||||
choices: [ True, False ]
|
type: bool
|
||||||
description:
|
description:
|
||||||
- Should the certificate signing request be forced regenerated by this ansible module
|
- Should the certificate signing request be forced regenerated by this ansible module
|
||||||
path:
|
path:
|
||||||
|
|
|
@ -40,7 +40,7 @@ options:
|
||||||
force:
|
force:
|
||||||
required: false
|
required: false
|
||||||
default: False
|
default: False
|
||||||
choices: [ True, False ]
|
type: bool
|
||||||
description:
|
description:
|
||||||
- Should the parameters be regenerated even it it already exists
|
- Should the parameters be regenerated even it it already exists
|
||||||
path:
|
path:
|
||||||
|
|
|
@ -46,7 +46,7 @@ options:
|
||||||
force:
|
force:
|
||||||
required: false
|
required: false
|
||||||
default: False
|
default: False
|
||||||
choices: [ True, False ]
|
type: bool
|
||||||
description:
|
description:
|
||||||
- Should the key be regenerated even it it already exists
|
- Should the key be regenerated even it it already exists
|
||||||
path:
|
path:
|
||||||
|
|
|
@ -35,7 +35,7 @@ options:
|
||||||
force:
|
force:
|
||||||
required: false
|
required: false
|
||||||
default: False
|
default: False
|
||||||
choices: [ True, False ]
|
type: bool
|
||||||
description:
|
description:
|
||||||
- Should the key be regenerated even it it already exists
|
- Should the key be regenerated even it it already exists
|
||||||
format:
|
format:
|
||||||
|
|
|
@ -36,7 +36,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Whether the user should be in the admin role or not.
|
- Whether the user should be in the admin role or not.
|
||||||
default: no
|
default: no
|
||||||
choices: [ yes, no]
|
type: bool
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- State of the user.
|
- State of the user.
|
||||||
|
|
|
@ -41,7 +41,6 @@ options:
|
||||||
- make this language trusted for the selected db
|
- make this language trusted for the selected db
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
choices: [ "yes", "no" ]
|
|
||||||
db:
|
db:
|
||||||
description:
|
description:
|
||||||
- name of database where the language will be added, removed or changed
|
- name of database where the language will be added, removed or changed
|
||||||
|
|
|
@ -46,7 +46,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- If C(no), it will search for src at originating/master machine, if C(yes) it will
|
- If C(no), it will search for src at originating/master machine, if C(yes) it will
|
||||||
go to the remote/target machine for the C(src).
|
go to the remote/target machine for the C(src).
|
||||||
choices: [ 'no', 'yes' ]
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
strip:
|
strip:
|
||||||
description:
|
description:
|
||||||
|
@ -59,7 +59,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Passes C(--backup --version-control=numbered) to patch,
|
- Passes C(--backup --version-control=numbered) to patch,
|
||||||
producing numbered backup copies.
|
producing numbered backup copies.
|
||||||
choices: [ 'no', 'yes' ]
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
binary:
|
binary:
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
|
@ -67,7 +67,7 @@ options:
|
||||||
- Setting to C(yes) will disable patch's heuristic for transforming CRLF
|
- Setting to C(yes) will disable patch's heuristic for transforming CRLF
|
||||||
line endings into LF. Line endings of src and dest must match. If set to
|
line endings into LF. Line endings of src and dest must match. If set to
|
||||||
C(no), C(patch) will replace CRLF in C(src) files on POSIX.
|
C(no), C(patch) will replace CRLF in C(src) files on POSIX.
|
||||||
choices: [ 'no', 'yes' ]
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
notes:
|
notes:
|
||||||
- This module requires GNU I(patch) utility to be installed on the remote host.
|
- This module requires GNU I(patch) utility to be installed on the remote host.
|
||||||
|
|
|
@ -64,7 +64,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- whether exchange is durable or not
|
- whether exchange is durable or not
|
||||||
required: false
|
required: false
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
default: yes
|
default: yes
|
||||||
exchange_type:
|
exchange_type:
|
||||||
description:
|
description:
|
||||||
|
@ -77,13 +77,13 @@ options:
|
||||||
description:
|
description:
|
||||||
- if the exchange should delete itself after all queues/exchanges unbound from it
|
- if the exchange should delete itself after all queues/exchanges unbound from it
|
||||||
required: false
|
required: false
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
internal:
|
internal:
|
||||||
description:
|
description:
|
||||||
- exchange is available only for other exchanges
|
- exchange is available only for other exchanges
|
||||||
required: false
|
required: false
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
arguments:
|
arguments:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -54,7 +54,7 @@ options:
|
||||||
on personally controlled sites using self-signed certificates.
|
on personally controlled sites using self-signed certificates.
|
||||||
required: false
|
required: false
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
|
|
||||||
requirements: []
|
requirements: []
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -68,7 +68,7 @@ options:
|
||||||
on personally controlled sites using self-signed certificates.
|
on personally controlled sites using self-signed certificates.
|
||||||
required: false
|
required: false
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
|
|
||||||
# informational: requirements for nodes
|
# informational: requirements for nodes
|
||||||
requirements: [ ]
|
requirements: [ ]
|
||||||
|
|
|
@ -64,7 +64,7 @@ options:
|
||||||
on personally controlled sites using self-signed certificates.
|
on personally controlled sites using self-signed certificates.
|
||||||
required: false
|
required: false
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
version_added: 1.5.1
|
version_added: 1.5.1
|
||||||
|
|
||||||
requirements: []
|
requirements: []
|
||||||
|
|
|
@ -59,7 +59,7 @@ options:
|
||||||
self-signed certificates.
|
self-signed certificates.
|
||||||
required: false
|
required: false
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|
|
@ -40,7 +40,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Create a backup file (if yes), including the timestamp information so you
|
- Create a backup file (if yes), including the timestamp information so you
|
||||||
- can get the original file back if you somehow clobbered it incorrectly.
|
- can get the original file back if you somehow clobbered it incorrectly.
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
requirements: [ ]
|
requirements: [ ]
|
||||||
|
|
|
@ -51,7 +51,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Only updates an existing macro if set to C(yes).
|
- Only updates an existing macro if set to C(yes).
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
version_added: 2.5
|
version_added: 2.5
|
||||||
|
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
|
|
|
@ -65,7 +65,7 @@ options:
|
||||||
- The approve argument instruct the module to convert a device in quarantine
|
- The approve argument instruct the module to convert a device in quarantine
|
||||||
mode into approved mode.
|
mode into approved mode.
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
location:
|
location:
|
||||||
description:
|
description:
|
||||||
- When approving a device using the I(approve) argument, it's possible
|
- When approving a device using the I(approve) argument, it's possible
|
||||||
|
|
|
@ -52,7 +52,7 @@ options:
|
||||||
on personally controlled devices using self-signed certificates.
|
on personally controlled devices using self-signed certificates.
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: true
|
||||||
choices: [true, false]
|
type: bool
|
||||||
access_token:
|
access_token:
|
||||||
description:
|
description:
|
||||||
- Big Cloud Fabric access token. If this isn't set then the environment variable C(BIGSWITCH_ACCESS_TOKEN) is used.
|
- Big Cloud Fabric access token. If this isn't set then the environment variable C(BIGSWITCH_ACCESS_TOKEN) is used.
|
||||||
|
|
|
@ -42,7 +42,7 @@ options:
|
||||||
on personally controlled devices using self-signed certificates.
|
on personally controlled devices using self-signed certificates.
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: true
|
||||||
choices: [true, false]
|
type: bool
|
||||||
access_token:
|
access_token:
|
||||||
description:
|
description:
|
||||||
- Bigmon access token. If this isn't set, the environment variable C(BIGSWITCH_ACCESS_TOKEN) is used.
|
- Bigmon access token. If this isn't set, the environment variable C(BIGSWITCH_ACCESS_TOKEN) is used.
|
||||||
|
|
|
@ -67,7 +67,7 @@ options:
|
||||||
on personally controlled devices using self-signed certificates.
|
on personally controlled devices using self-signed certificates.
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: true
|
||||||
choices: [true, false]
|
type: bool
|
||||||
access_token:
|
access_token:
|
||||||
description:
|
description:
|
||||||
- Bigmon access token. If this isn't set, the environment variable C(BIGSWITCH_ACCESS_TOKEN) is used.
|
- Bigmon access token. If this isn't set, the environment variable C(BIGSWITCH_ACCESS_TOKEN) is used.
|
||||||
|
|
|
@ -26,9 +26,7 @@ options:
|
||||||
deactivate existing active policy. Generally should be C(yes) only in cases where
|
deactivate existing active policy. Generally should be C(yes) only in cases where
|
||||||
you want to activate new or existing policy.
|
you want to activate new or existing policy.
|
||||||
default: no
|
default: no
|
||||||
choices:
|
type: bool
|
||||||
- yes
|
|
||||||
- no
|
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- The ASM policy to manage or create.
|
- The ASM policy to manage or create.
|
||||||
|
|
|
@ -32,26 +32,20 @@ options:
|
||||||
device to other members of the device group. In this case, the device
|
device to other members of the device group. In this case, the device
|
||||||
will do a "push" to all the other devices in the group. This option
|
will do a "push" to all the other devices in the group. This option
|
||||||
is mutually exclusive with the C(sync_group_to_device) option.
|
is mutually exclusive with the C(sync_group_to_device) option.
|
||||||
choices:
|
type: bool
|
||||||
- yes
|
|
||||||
- no
|
|
||||||
sync_most_recent_to_device:
|
sync_most_recent_to_device:
|
||||||
description:
|
description:
|
||||||
- Specifies that the system synchronizes configuration data from the
|
- Specifies that the system synchronizes configuration data from the
|
||||||
device with the most recent configuration. In this case, the device
|
device with the most recent configuration. In this case, the device
|
||||||
will do a "pull" from the most recently updated device. This option
|
will do a "pull" from the most recently updated device. This option
|
||||||
is mutually exclusive with the C(sync_device_to_group) options.
|
is mutually exclusive with the C(sync_device_to_group) options.
|
||||||
choices:
|
type: bool
|
||||||
- yes
|
|
||||||
- no
|
|
||||||
overwrite_config:
|
overwrite_config:
|
||||||
description:
|
description:
|
||||||
- Indicates that the sync operation overwrites the configuration on
|
- Indicates that the sync operation overwrites the configuration on
|
||||||
the target.
|
the target.
|
||||||
default: no
|
default: no
|
||||||
choices:
|
type: bool
|
||||||
- yes
|
|
||||||
- no
|
|
||||||
notes:
|
notes:
|
||||||
- Requires the objectpath Python package on the host. This is as easy as
|
- Requires the objectpath Python package on the host. This is as easy as
|
||||||
C(pip install objectpath).
|
C(pip install objectpath).
|
||||||
|
|
|
@ -50,9 +50,7 @@ options:
|
||||||
C(multicast_interface), C(multicast_address) and C(multicast_port) are
|
C(multicast_interface), C(multicast_address) and C(multicast_port) are
|
||||||
the defaults specified in each option's description. When C(no), ensures
|
the defaults specified in each option's description. When C(no), ensures
|
||||||
that Failover Multicast configuration is disabled.
|
that Failover Multicast configuration is disabled.
|
||||||
choices:
|
type: bool
|
||||||
- yes
|
|
||||||
- no
|
|
||||||
multicast_interface:
|
multicast_interface:
|
||||||
description:
|
description:
|
||||||
- Interface over which the system sends multicast messages associated
|
- Interface over which the system sends multicast messages associated
|
||||||
|
|
|
@ -91,11 +91,9 @@ options:
|
||||||
description:
|
description:
|
||||||
- When state is absent and the pool member is no longer referenced
|
- When state is absent and the pool member is no longer referenced
|
||||||
in other pools, the default behavior removes the unused node
|
in other pools, the default behavior removes the unused node
|
||||||
o bject. Setting this to 'yes' disables this behavior.
|
object. Setting this to 'yes' disables this behavior.
|
||||||
default: no
|
default: no
|
||||||
choices:
|
type: bool
|
||||||
- yes
|
|
||||||
- no
|
|
||||||
version_added: 2.1
|
version_added: 2.1
|
||||||
priority_group:
|
priority_group:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -53,7 +53,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Negate source address param.
|
- Negate source address param.
|
||||||
default: false
|
default: false
|
||||||
choices: ["true", "false"]
|
type: bool
|
||||||
dst_addr:
|
dst_addr:
|
||||||
description:
|
description:
|
||||||
- Specifies destination address (or group) object name(s). Required when I(state=present).
|
- Specifies destination address (or group) object name(s). Required when I(state=present).
|
||||||
|
@ -61,7 +61,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Negate destination address param.
|
- Negate destination address param.
|
||||||
default: false
|
default: false
|
||||||
choices: ["true", "false"]
|
type: bool
|
||||||
policy_action:
|
policy_action:
|
||||||
description:
|
description:
|
||||||
- Specifies accept or deny action policy. Required when I(state=present).
|
- Specifies accept or deny action policy. Required when I(state=present).
|
||||||
|
@ -76,7 +76,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Negate policy service(s) defined in service value.
|
- Negate policy service(s) defined in service value.
|
||||||
default: false
|
default: false
|
||||||
choices: ["true", "false"]
|
type: bool
|
||||||
schedule:
|
schedule:
|
||||||
description:
|
description:
|
||||||
- defines policy schedule.
|
- defines policy schedule.
|
||||||
|
@ -85,12 +85,12 @@ options:
|
||||||
description:
|
description:
|
||||||
- Enable or disable Nat.
|
- Enable or disable Nat.
|
||||||
default: false
|
default: false
|
||||||
choices: ["true", "false"]
|
type: bool
|
||||||
fixedport:
|
fixedport:
|
||||||
description:
|
description:
|
||||||
- Use fixed port for nat.
|
- Use fixed port for nat.
|
||||||
default: false
|
default: false
|
||||||
choices: ["true", "false"]
|
type: bool
|
||||||
poolname:
|
poolname:
|
||||||
description:
|
description:
|
||||||
- Specifies NAT pool name.
|
- Specifies NAT pool name.
|
||||||
|
@ -117,7 +117,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Logs beginning of session as well.
|
- Logs beginning of session as well.
|
||||||
default: false
|
default: false
|
||||||
choices: ["true", "false"]
|
type: bool
|
||||||
comment:
|
comment:
|
||||||
description:
|
description:
|
||||||
- free text to describe policy.
|
- free text to describe policy.
|
||||||
|
|
|
@ -32,7 +32,7 @@ options:
|
||||||
do not persist across reboots.
|
do not persist across reboots.
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
choices: [ "true", "false" ]
|
type: bool
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Create or delete Solaris/illumos etherstub.
|
- Create or delete Solaris/illumos etherstub.
|
||||||
|
|
|
@ -37,7 +37,7 @@ options:
|
||||||
do not persist across reboots.
|
do not persist across reboots.
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
choices: [ "true", "false" ]
|
type: bool
|
||||||
mac:
|
mac:
|
||||||
description:
|
description:
|
||||||
- Sets the VNIC's MAC address. Must be valid unicast MAC address.
|
- Sets the VNIC's MAC address. Must be valid unicast MAC address.
|
||||||
|
|
|
@ -75,7 +75,7 @@ options:
|
||||||
flows do not persist across reboots.
|
flows do not persist across reboots.
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
choices: [ "true", "false" ]
|
type: bool
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Create/delete/enable/disable an IP address on the network interface.
|
- Create/delete/enable/disable an IP address on the network interface.
|
||||||
|
|
|
@ -33,7 +33,7 @@ options:
|
||||||
interfaces do not persist across reboots.
|
interfaces do not persist across reboots.
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
choices: [ "true", "false" ]
|
type: bool
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Create or delete Solaris/illumos IP interfaces.
|
- Create or delete Solaris/illumos IP interfaces.
|
||||||
|
|
|
@ -40,7 +40,7 @@ options:
|
||||||
property values do not persist across reboots.
|
property values do not persist across reboots.
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
choices: [ "true", "false" ]
|
type: bool
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Set or reset the property value.
|
- Set or reset the property value.
|
||||||
|
|
|
@ -83,7 +83,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -62,7 +62,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -47,7 +47,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -62,7 +62,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -49,7 +49,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -38,7 +38,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -49,7 +49,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
rotate_frequency:
|
rotate_frequency:
|
||||||
description:
|
description:
|
||||||
- Rotate log frequency in minutes, this is applicable if value
|
- Rotate log frequency in minutes, this is applicable if value
|
||||||
|
|
|
@ -54,7 +54,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -59,7 +59,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -48,7 +48,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -54,6 +54,7 @@ options:
|
||||||
- Causes JUNOS to allocate a VPN label per VRF rather than per VPN FEC.
|
- Causes JUNOS to allocate a VPN label per VRF rather than per VPN FEC.
|
||||||
This allows for forwarding of traffic to directly connected subnets, COS
|
This allows for forwarding of traffic to directly connected subnets, COS
|
||||||
Egress filtering etc.
|
Egress filtering etc.
|
||||||
|
type: bool
|
||||||
aggregate:
|
aggregate:
|
||||||
description:
|
description:
|
||||||
- The set of VRF definition objects to be configured on the remote
|
- The set of VRF definition objects to be configured on the remote
|
||||||
|
@ -73,7 +74,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies whether or not the configuration is active or deactivated
|
- Specifies whether or not the configuration is active or deactivated
|
||||||
default: True
|
default: True
|
||||||
choices: [True, False]
|
type: bool
|
||||||
requirements:
|
requirements:
|
||||||
- ncclient (>=v0.5.2)
|
- ncclient (>=v0.5.2)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -36,7 +36,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- EVPN control plane.
|
- EVPN control plane.
|
||||||
required: true
|
required: true
|
||||||
choices: ['true', 'false']
|
type: bool
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|
|
@ -51,7 +51,7 @@ options:
|
||||||
argument to False.
|
argument to False.
|
||||||
required: false
|
required: false
|
||||||
default: yes
|
default: yes
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
aliases: ['enable_http']
|
aliases: ['enable_http']
|
||||||
https_port:
|
https_port:
|
||||||
description:
|
description:
|
||||||
|
@ -70,7 +70,7 @@ options:
|
||||||
argument to True.
|
argument to True.
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
aliases: ['enable_https']
|
aliases: ['enable_https']
|
||||||
sandbox:
|
sandbox:
|
||||||
description:
|
description:
|
||||||
|
@ -82,7 +82,7 @@ options:
|
||||||
sandbox URL is unavailable. This is supported on NX-OS 7K series.
|
sandbox URL is unavailable. This is supported on NX-OS 7K series.
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
aliases: ['enable_sandbox']
|
aliases: ['enable_sandbox']
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -87,7 +87,7 @@ options:
|
||||||
folder in the playbook root directory. If the directory does not
|
folder in the playbook root directory. If the directory does not
|
||||||
exist, it is created.
|
exist, it is created.
|
||||||
default: no
|
default: no
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
config:
|
config:
|
||||||
description:
|
description:
|
||||||
- The C(config) argument allows the playbook designer to supply
|
- The C(config) argument allows the playbook designer to supply
|
||||||
|
@ -100,7 +100,7 @@ options:
|
||||||
config to the startup-config at the conclusion of the module
|
config to the startup-config at the conclusion of the module
|
||||||
running. If check mode is specified, this argument is ignored.
|
running. If check mode is specified, this argument is ignored.
|
||||||
default: no
|
default: no
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
"""
|
"""
|
||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
|
|
|
@ -47,8 +47,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- If C(yes), text will be parsed as markdown.
|
- If C(yes), text will be parsed as markdown.
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices:
|
type: bool
|
||||||
- 'yes'
|
|
||||||
channel:
|
channel:
|
||||||
description:
|
description:
|
||||||
- Channel to send the message to. If absent, the message goes to the
|
- Channel to send the message to. If absent, the message goes to the
|
||||||
|
|
|
@ -77,7 +77,7 @@ options:
|
||||||
on personally controlled sites using self-signed certificates.
|
on personally controlled sites using self-signed certificates.
|
||||||
required: false
|
required: false
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
version_added: 1.5.1
|
version_added: 1.5.1
|
||||||
|
|
||||||
requirements: [ ]
|
requirements: [ ]
|
||||||
|
|
|
@ -47,9 +47,8 @@ options:
|
||||||
description:
|
description:
|
||||||
- If C(no), SSL certificates will not be validated. This should only be used
|
- If C(no), SSL certificates will not be validated. This should only be used
|
||||||
on personally controlled sites using self-signed certificates.
|
on personally controlled sites using self-signed certificates.
|
||||||
required: false
|
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
version_added: 1.5.1
|
version_added: 1.5.1
|
||||||
author: "Jonas Pfenniger (@zimbatm)"
|
author: "Jonas Pfenniger (@zimbatm)"
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -58,9 +58,7 @@ options:
|
||||||
- If C(no), SSL certificates will not be validated. This should only be used
|
- If C(no), SSL certificates will not be validated. This should only be used
|
||||||
on personally controlled sites using self-signed certificates.
|
on personally controlled sites using self-signed certificates.
|
||||||
default: yes
|
default: yes
|
||||||
choices:
|
type: bool
|
||||||
- 'yes'
|
|
||||||
- 'no'
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
|
|
|
@ -46,11 +46,8 @@ options:
|
||||||
description:
|
description:
|
||||||
- If C(no), SSL certificates will not be validated. This should only be used
|
- If C(no), SSL certificates will not be validated. This should only be used
|
||||||
on personally controlled sites using self-signed certificates.
|
on personally controlled sites using self-signed certificates.
|
||||||
required: false
|
type: bool
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices:
|
|
||||||
- 'yes'
|
|
||||||
- 'no'
|
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- url
|
- url
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -51,38 +51,38 @@ options:
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
description:
|
description:
|
||||||
- Runs the specified command globally.
|
- Runs the specified command globally.
|
||||||
choices: [ true, false]
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
aliases: [ global-command ]
|
aliases: [ global-command ]
|
||||||
prefer_source:
|
prefer_source:
|
||||||
description:
|
description:
|
||||||
- Forces installation from package sources when possible (see --prefer-source).
|
- Forces installation from package sources when possible (see --prefer-source).
|
||||||
default: false
|
default: false
|
||||||
choices: [ true, false]
|
type: bool
|
||||||
aliases: [ prefer-source ]
|
aliases: [ prefer-source ]
|
||||||
prefer_dist:
|
prefer_dist:
|
||||||
description:
|
description:
|
||||||
- Forces installation from package dist even for dev versions (see --prefer-dist).
|
- Forces installation from package dist even for dev versions (see --prefer-dist).
|
||||||
default: false
|
default: false
|
||||||
choices: [ true, false]
|
type: bool
|
||||||
aliases: [ prefer-dist ]
|
aliases: [ prefer-dist ]
|
||||||
no_dev:
|
no_dev:
|
||||||
description:
|
description:
|
||||||
- Disables installation of require-dev packages (see --no-dev).
|
- Disables installation of require-dev packages (see --no-dev).
|
||||||
default: true
|
default: true
|
||||||
choices: [ true, false]
|
type: bool
|
||||||
aliases: [ no-dev ]
|
aliases: [ no-dev ]
|
||||||
no_scripts:
|
no_scripts:
|
||||||
description:
|
description:
|
||||||
- Skips the execution of all scripts defined in composer.json (see --no-scripts).
|
- Skips the execution of all scripts defined in composer.json (see --no-scripts).
|
||||||
default: false
|
default: false
|
||||||
choices: [ true, false]
|
type: bool
|
||||||
aliases: [ no-scripts ]
|
aliases: [ no-scripts ]
|
||||||
no_plugins:
|
no_plugins:
|
||||||
description:
|
description:
|
||||||
- Disables all plugins ( see --no-plugins ).
|
- Disables all plugins ( see --no-plugins ).
|
||||||
default: false
|
default: false
|
||||||
choices: [ true, false]
|
type: bool
|
||||||
aliases: [ no-plugins ]
|
aliases: [ no-plugins ]
|
||||||
optimize_autoloader:
|
optimize_autoloader:
|
||||||
description:
|
description:
|
||||||
|
@ -90,14 +90,14 @@ options:
|
||||||
- Convert PSR-0/4 autoloading to classmap to get a faster autoloader.
|
- Convert PSR-0/4 autoloading to classmap to get a faster autoloader.
|
||||||
- Recommended especially for production, but can take a bit of time to run.
|
- Recommended especially for production, but can take a bit of time to run.
|
||||||
default: true
|
default: true
|
||||||
choices: [ true, false]
|
type: bool
|
||||||
aliases: [ optimize-autoloader ]
|
aliases: [ optimize-autoloader ]
|
||||||
ignore_platform_reqs:
|
ignore_platform_reqs:
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
description:
|
description:
|
||||||
- Ignore php, hhvm, lib-* and ext-* requirements and force the installation even if the local machine does not fulfill these.
|
- Ignore php, hhvm, lib-* and ext-* requirements and force the installation even if the local machine does not fulfill these.
|
||||||
default: false
|
default: false
|
||||||
choices: [ true, false]
|
type: bool
|
||||||
aliases: [ ignore-platform-reqs ]
|
aliases: [ ignore-platform-reqs ]
|
||||||
requirements:
|
requirements:
|
||||||
- php
|
- php
|
||||||
|
|
|
@ -39,7 +39,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Whether to include dependencies or not.
|
- Whether to include dependencies or not.
|
||||||
required: false
|
required: false
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
default: "yes"
|
default: "yes"
|
||||||
repository:
|
repository:
|
||||||
description:
|
description:
|
||||||
|
@ -50,7 +50,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Install gem in user's local gems cache or for all users
|
- Install gem in user's local gems cache or for all users
|
||||||
required: false
|
required: false
|
||||||
choices: ["yes", "no"]
|
type: bool
|
||||||
default: "yes"
|
default: "yes"
|
||||||
version_added: "1.3"
|
version_added: "1.3"
|
||||||
executable:
|
executable:
|
||||||
|
|
|
@ -40,7 +40,7 @@ options:
|
||||||
- Install the node.js library globally
|
- Install the node.js library globally
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
executable:
|
executable:
|
||||||
description:
|
description:
|
||||||
- The executable location for npm.
|
- The executable location for npm.
|
||||||
|
@ -48,16 +48,16 @@ options:
|
||||||
required: false
|
required: false
|
||||||
ignore_scripts:
|
ignore_scripts:
|
||||||
description:
|
description:
|
||||||
- Use the --ignore-scripts flag when installing.
|
- Use the C(--ignore-scripts) flag when installing.
|
||||||
required: false
|
required: false
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
version_added: "1.8"
|
version_added: "1.8"
|
||||||
production:
|
production:
|
||||||
description:
|
description:
|
||||||
- Install dependencies in production mode, excluding devDependencies
|
- Install dependencies in production mode, excluding devDependencies
|
||||||
required: false
|
required: false
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
registry:
|
registry:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -33,15 +33,12 @@ options:
|
||||||
description:
|
description:
|
||||||
- state of the package
|
- state of the package
|
||||||
choices: [ 'present', 'absent', 'active', 'inactive' ]
|
choices: [ 'present', 'absent', 'active', 'inactive' ]
|
||||||
required: false
|
|
||||||
default: present
|
default: present
|
||||||
update_cache:
|
update_cache:
|
||||||
description:
|
description:
|
||||||
- update the package db first
|
- update the package db first
|
||||||
required: false
|
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
notes: []
|
|
||||||
'''
|
'''
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- macports:
|
- macports:
|
||||||
|
|
|
@ -32,7 +32,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- state of the package
|
- state of the package
|
||||||
choices: [ 'present', 'absent' ]
|
choices: [ 'present', 'absent' ]
|
||||||
required: false
|
|
||||||
default: present
|
default: present
|
||||||
force:
|
force:
|
||||||
description:
|
description:
|
||||||
|
@ -49,16 +48,13 @@ options:
|
||||||
- "remove"
|
- "remove"
|
||||||
- "checksum"
|
- "checksum"
|
||||||
- "removal-of-dependent-packages"
|
- "removal-of-dependent-packages"
|
||||||
required: false
|
|
||||||
default: absent
|
default: absent
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
update_cache:
|
update_cache:
|
||||||
description:
|
description:
|
||||||
- update the package db first
|
- update the package db first
|
||||||
required: false
|
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
notes: []
|
|
||||||
requirements:
|
requirements:
|
||||||
- opkg
|
- opkg
|
||||||
- python
|
- python
|
||||||
|
|
|
@ -39,7 +39,7 @@ options:
|
||||||
cached:
|
cached:
|
||||||
description:
|
description:
|
||||||
- Use local package base instead of fetching an updated one.
|
- Use local package base instead of fetching an updated one.
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
annotation:
|
annotation:
|
||||||
|
@ -81,7 +81,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Remove automatically installed packages which are no longer needed.
|
- Remove automatically installed packages which are no longer needed.
|
||||||
required: false
|
required: false
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
author: "bleader (@bleader)"
|
author: "bleader (@bleader)"
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -37,7 +37,7 @@ options:
|
||||||
use_packages:
|
use_packages:
|
||||||
description:
|
description:
|
||||||
- use packages instead of ports whenever available
|
- use packages instead of ports whenever available
|
||||||
choices: [ 'yes', 'no' ]
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
default: yes
|
default: yes
|
||||||
author: "berenddeboer (@berenddeboer)"
|
author: "berenddeboer (@berenddeboer)"
|
||||||
|
|
|
@ -45,7 +45,7 @@ options:
|
||||||
- update the package database first
|
- update the package database first
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
choices: [ true, false ]
|
type: bool
|
||||||
|
|
||||||
author: Kim Nørgaard (@KimNorgaard)
|
author: Kim Nørgaard (@KimNorgaard)
|
||||||
requirements: [ "Slackware >= 12.2" ]
|
requirements: [ "Slackware >= 12.2" ]
|
||||||
|
|
|
@ -64,7 +64,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Install/Remove category instead of a single package.
|
- Install/Remove category instead of a single package.
|
||||||
required: false
|
required: false
|
||||||
choices: ["true", "false"]
|
type: bool
|
||||||
version_added: "1.6"
|
version_added: "1.6"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
|
@ -101,8 +101,7 @@ options:
|
||||||
- Has an effect only if state is I(latest)
|
- Has an effect only if state is I(latest)
|
||||||
required: false
|
required: false
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: ["yes", "no"]
|
type: bool
|
||||||
aliases: []
|
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
|
|
||||||
installroot:
|
installroot:
|
||||||
|
|
|
@ -75,7 +75,7 @@ options:
|
||||||
I(present) or I(latest).
|
I(present) or I(latest).
|
||||||
required: false
|
required: false
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
disable_recommends:
|
disable_recommends:
|
||||||
version_added: "1.8"
|
version_added: "1.8"
|
||||||
description:
|
description:
|
||||||
|
@ -83,21 +83,21 @@ options:
|
||||||
install recommended packages.
|
install recommended packages.
|
||||||
required: false
|
required: false
|
||||||
default: "yes"
|
default: "yes"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
force:
|
force:
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
description:
|
description:
|
||||||
- Adds C(--force) option to I(zypper). Allows to downgrade packages and change vendor or architecture.
|
- Adds C(--force) option to I(zypper). Allows to downgrade packages and change vendor or architecture.
|
||||||
required: false
|
required: false
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
update_cache:
|
update_cache:
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
description:
|
description:
|
||||||
- Run the equivalent of C(zypper refresh) before the operation. Disabled in check mode.
|
- Run the equivalent of C(zypper refresh) before the operation. Disabled in check mode.
|
||||||
required: false
|
required: false
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
aliases: [ "refresh" ]
|
aliases: [ "refresh" ]
|
||||||
oldpackage:
|
oldpackage:
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
|
@ -106,7 +106,7 @@ options:
|
||||||
version is specified as part of the package name.
|
version is specified as part of the package name.
|
||||||
required: false
|
required: false
|
||||||
default: "no"
|
default: "no"
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
extra_args:
|
extra_args:
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
required: false
|
required: false
|
||||||
|
|
|
@ -64,7 +64,7 @@ options:
|
||||||
- Whether to force a reboot (even when the system is already booted).
|
- Whether to force a reboot (even when the system is already booted).
|
||||||
- As a safeguard, without force, hpilo_boot will refuse to reboot a server that is already running.
|
- As a safeguard, without force, hpilo_boot will refuse to reboot a server that is already running.
|
||||||
default: no
|
default: no
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
ssl_version:
|
ssl_version:
|
||||||
description:
|
description:
|
||||||
- Change the ssl_version used.
|
- Change the ssl_version used.
|
||||||
|
|
|
@ -50,7 +50,7 @@ options:
|
||||||
on personally controlled sites using self-signed certificates.
|
on personally controlled sites using self-signed certificates.
|
||||||
required: false
|
required: false
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
type: bool
|
||||||
content_type:
|
content_type:
|
||||||
description:
|
description:
|
||||||
- Content type to use for requests made to the webhook
|
- Content type to use for requests made to the webhook
|
||||||
|
|
|
@ -43,7 +43,7 @@ options:
|
||||||
no_root_squash:
|
no_root_squash:
|
||||||
description:
|
description:
|
||||||
- Don't squash root user to anonymous. Will be set to "no" on creation if not specified explicitly.
|
- Don't squash root user to anonymous. Will be set to "no" on creation if not specified explicitly.
|
||||||
choices: [ "yes", "no" ]
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
required: false
|
required: false
|
||||||
export:
|
export:
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue