从下面的示例中,
为什么当 db.x86_64.alpine.update 为真时跳过了 DEBUG 2
我也一直在尝试“何时:db.x86_64.alpine.update|bool 为真”,但这也失败了
变量文件 db.yml
shell> cat db.yml
x86_64:
alpine:
update: true
version_current: 3.14.0
version_new: 3.15.
aarch64:
alpine:
update: true
version_current: 3.14.0
version_new: 3.15.0
剧本
---
- name: Playbook test
hosts: localhost
tasks:
- ansible.builtin.include_vars:
file: db.yml
name: db
- name: DEBUG 1
debug:
var: db.x86_64.alpine.update |type_debug
- name: DEBUG 2
debug:
msg:
- "MESSAGE"
when: db.x86_64.alpine.update is true
运行时输出
PLAY [Playbook test] ******************************************************************************************************************************************************************************************************************************************************
TASK [Gathering Facts] ****************************************************************************************************************************************************************************************************************************************************
ok: [localhost]
TASK [ansible.builtin.include_vars] ***************************************************************************************************************************************************************************************************************************************
ok: [localhost]
TASK [debug] **************************************************************************************************************************************************************************************************************************************************************
ok: [localhost] => {
"db.x86_64.alpine.update |type_debug": "builtin_function_or_method"
}
TASK [debug] **************************************************************************************************************************************************************************************************************************************************************
skipping: [localhost]
PLAY RECAP ****************************************************************************************************************************************************************************************************************************************************************
localhost : ok=3 changed=0 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0
问题:
当 db.x86_64.alpine.update 为 true 时如何显示消息
没有必要明确地测试一个布尔值。只需使用条件中的值
将打印消息
问题是属性更新与Python字典的方法冲突。请参阅引用键:值字典变量。
给
因为文件中的变量正在返回 DICT ...
那么您可以通过这种方式进行验证:
调试:
db.yml是<dict对象的内置方法更新...>
我的环境: