Note
This plugin is part of the community.windows collection (version 1.7.0).
You might already have this collection installed if you are using the ansible
package. It is not included in ansible-core
. To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.windows
.
To use it in a playbook, specify: community.windows.win_xml
.
Parameter | Choices/Defaults | Comments |
---|---|---|
attribute string | The attribute name if the type is 'attribute'. Required if type=attribute . | |
backup boolean |
| Determine whether a backup should be created. When set to yes , create a backup file including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly. |
count boolean |
| When set to yes , return the number of nodes matched by xpath. |
fragment string | The string representation of the XML fragment expected at xpath. Since ansible 2.9 not required when state=absent, or when count=yes. aliases: xmlstring | |
path path / required | Path to the file to operate on. aliases: dest, file | |
state string |
| Set or remove the nodes (or attributes) matched by xpath. |
type string / required |
| The type of XML node you are working with. |
xpath string / required | Xpath to select the node or nodes to operate on. |
Note
See also
XML manipulation for Posix hosts.
A useful tutorial on XPath
- name: Apply our filter to Tomcat web.xml community.windows.win_xml: path: C:\apache-tomcat\webapps\myapp\WEB-INF\web.xml fragment: '<filter><filter-name>MyFilter</filter-name><filter-class>com.example.MyFilter</filter-class></filter>' xpath: '/*' - name: Apply sslEnabledProtocols to Tomcat's server.xml community.windows.win_xml: path: C:\Tomcat\conf\server.xml xpath: '//Server/Service[@name="Catalina"]/Connector[@port="9443"]' attribute: 'sslEnabledProtocols' fragment: 'TLSv1,TLSv1.1,TLSv1.2' type: attribute - name: remove debug configuration nodes from nlog.conf community.windows.win_xml: path: C:\IISApplication\nlog.conf xpath: /nlog/rules/logger[@name="debug"]/descendant::* state: absent - name: count configured connectors in Tomcat's server.xml community.windows.win_xml: path: C:\Tomcat\conf\server.xml xpath: //Server/Service/Connector count: yes register: connector_count - name: show connector count debug: msg="Connector count is {{connector_count.count}}" - name: ensure all lang=en attributes to lang=nl community.windows.win_xml: path: C:\Data\Books.xml xpath: //@[lang="en"] attribute: lang fragment: nl type: attribute
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
backup_file string | if backup=yes | Name of the backup file that was created. Sample: C:\Path\To\File.txt.11540.20150212-220915.bak |
count integer | if count=yes | Number of nodes matched by xpath. Sample: 33 |
err list / elements=string | always, for type element and -vvv or more | XML comparison exceptions. Sample: attribute mismatch for actual=string |
msg string | always | What was done. Sample: xml added |
© 2012–2018 Michael DeHaan
© 2018–2021 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/community/windows/win_xml_module.html