state=installed
在ansible apt中意味着什么?
- name: Install Node.js
apt:
pkg:
- nodejs
state: installed
update_cache: yes
在文档中或其他地方没有提及。
答案 0 :(得分:8)
如果我们查看code:
# Deal with deprecated aliases
if p['state'] == 'installed':
p['state'] = 'present'
if p['state'] == 'removed':
p['state'] = 'absent'
installed
是present
的弃用形式,
removed
是absent
的弃用形式。