ansible.builtin.truthy 测试 – Python 式的真值
注意
此测试插件是 ansible-core
的一部分,并包含在所有 Ansible 安装中。在大多数情况下,您可以使用简短的插件名称 truthy
。但是,我们建议您使用完全限定集合名称 (FQCN) ansible.builtin.truthy
,以便轻松链接到插件文档并避免与其他可能具有相同测试插件名称的集合冲突。
ansible-base 2.10 新增功能
概要
此检查是 “true” 的更 Python 版本。
它与 ansible.builtin.falsy 相反。
输入
这描述了测试的输入,即 is ansible.builtin.truthy
或 is not ansible.builtin.truthy
之前的值。
参数 |
注释 |
---|---|
可以在布尔上下文中表达的表达式。 |
关键字参数
这描述了测试的关键字参数。这些是在以下示例中 key1=value1
, key2=value2
等值:input is ansible.builtin.truthy(key1=value1, key2=value2, ...)
和 input is not ansible.builtin.truthy(key1=value1, key2=value2, ...)
参数 |
注释 |
---|---|
尝试转换为严格的 Python 布尔值,而不是通常可接受的值 ( 选择
|
示例
thisistrue: '{{ "any string" is truthy }}'
thisisfalse: '{{ "" is truthy }}'
返回值
键 |
描述 |
---|---|
如果条件不是 “Python 真值”,则返回 返回:成功 |