在 ansible 2.10 中,我使用ldap_attrs 模块来启用 openldap memberof 模块:
- name: Enable memberof module
ldap_attrs:
dn: cn=module{0},cn=config
attributes:
olcModuleLoad: memberof.so
state: present
第一次执行任务效果很好,但如果我第二次播放剧本,它会失败:
fatal: [myserver.mydomain.tld]: FAILED! => {"changed": false, "details": "{'info': u'modify/add: olcModuleLoad: value #0 already exists', 'desc': u'Type or value exists'}", "msg": "Attribute action failed."}
already exists
听起来像我所期望的,所以我很惊讶它被认为是致命的。
它是一个错误的错误,还是我错过了配置中的某些内容?