我正在尝试遵循参数/示例,但在执行 Ansible'playbook 时遇到以下警告消息:
TASK [apt (pre)] ********************************************************************************************
[WARNING]: The value True (type bool) in a string field was converted to u'True' (type string). If this does
not look like what you expect, quote the entire value to ensure it does not change.
剧本的相关部分:
- name: apt (pre)
apt:
update_cache: yes
upgrade: yes
请指教。
我能够重新创建您的结果。
我发现的
upgrade
是期待一个字符串值。除了yes
andno
您还可以使用dist
,full
, 或safe
将您的剧本更改为以下内容应该可以达到预期的效果:
参考
Ansible Apt 模块