Я запускаю следующую задачу в ansible playbook после установки iis, пытаясь удалить файлы документов веб-сайта по умолчанию из applicationhost.config.
- name: Remove defaultDocument Files From applicationhost.config
win_xml:
path: C:\Windows\System32\inetsrv\Config\applicationHost.config
xpath: /configuration/system.webServer/defaultDocument/files/*
state: absent
Ошибка воспроизведения со следующей ошибкой:
The full traceback is:
The property 'removed' cannot be found on this object. Verify that the property exists.
At line:162 char:21
+ ... $result.removed += $result.removed + $removedNode.get_Out ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : PropertyNotFoundStrict
ScriptStackTrace:
at <ScriptBlock>, <No file>: line 162
fatal: [win2019-local-096]: FAILED! => {
"changed": false,
"msg": "Unhandled exception while executing module: The property 'removed' cannot be found on this object. Verify that the property exists."
}