Возникла проблема при обновлении XML-файла с использованием модуля win_xml ansible в Windows

1. Я пытаюсь обновить значения элемента xml в файле test.xml, используя скрипт ansible с помощью win_xml, моя книга воспроизведения ansible выглядит следующим образом:

---
- hosts: windows
  gather_facts: no

  tasks:
  - name: Updating xml file
    win_xml:
     path: 'C:\test.xml'
     xpath: '/properties/entry'
     fragment: 'test'
     attribute: 'key="test"'
     type: text

2. Запустите playbook, используя команду ниже:

ansible-playbook -i ../hosts win-playbook.yml -vvv

3.Эта команда не работает с ошибкой ниже:

  The full traceback is:
The property 'SchemaInfo' cannot be found on this object. Verify that the property exists.
At line:118 char:1
+ $namespaceMgr.AddNamespace($xmlorig.$localname.SchemaInfo.Prefix, $na ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : PropertyNotFoundStrict

ScriptStackTrace:
at <ScriptBlock>, <No file>: line 118

fatal: [windows]: FAILED! => {
    "changed": false,
    "msg": "Unhandled exception while executing module: The property 'SchemaInfo' cannot be found on this object. Verify that the property exists."
}

1 ответ

Если вы проходите **attribute** параметр, вы должны передать type: attribute. Отдых мне нравится

Другие вопросы по тегам