ansible.builtin.truthy 测试 - Pythonic True

注意

此测试插件是 ansible-core 的一部分,包含在所有 Ansible 安装中。在大多数情况下,您可以使用简短的插件名称 truthy。但是,我们建议您使用 完全限定的集合名称 (FQCN) ansible.builtin.truthy 来方便链接到插件文档并避免与可能具有相同测试插件名称的其他集合冲突。

ansible-base 2.10 中的新功能

概要

输入

这描述了测试的输入,即 is ansible.builtin.truthyis not ansible.builtin.truthy 之前的价值。

参数

评论

输入

字符串 / 必需

可以在布尔上下文中表达的表达式。

关键字参数

这描述了测试的关键字参数。这些是在以下示例中使用的值 key1=value1key2=value2 等:input is ansible.builtin.truthy(key1=value1, key2=value2, ...)input is not ansible.builtin.truthy(key1=value1, key2=value2, ...)

参数

评论

convert_bool

布尔

尝试转换为严格的 python 布尔值,而不是通常可接受的值(yes/noon/off0/1 等)。

选择

  • false ← (默认)

  • true

示例

thisistrue: '{{ "any string" is truthy }}'
thisisfalse: '{{ "" is truthy }}'

返回值

描述

返回值

布尔

如果条件不是“Python truthy”,则返回 True,否则返回 False

返回: 成功

作者

  • Ansible 核心

提示

每个条目类型的配置条目具有从低到高的优先级顺序。例如,列表中较低的变量将覆盖列表中较高的变量。