在ansible apt中state = installed意味着什么?

时间:2016-10-06 18:13:41

标签: ansible

state=installed在ansible apt中意味着什么?

- name: Install Node.js
  apt:
    pkg:
      - nodejs
    state: installed
    update_cache: yes

在文档中或其他地方没有提及。

1 个答案:

答案 0 :(得分:8)

如果我们查看code

# Deal with deprecated aliases
if p['state'] == 'installed':
    p['state'] = 'present'
if p['state'] == 'removed':
    p['state'] = 'absent'

installedpresent的弃用形式,
removedabsent的弃用形式。