mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
---
|
|
syslog_config: |
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<configuration>
|
|
<system>
|
|
<syslog>
|
|
<file>
|
|
<name>test_netconf_config</name>
|
|
<contents>
|
|
<name>any</name>
|
|
<any/>
|
|
</contents>
|
|
<contents>
|
|
<name>kernel</name>
|
|
<critical/>
|
|
</contents>
|
|
</file>
|
|
</syslog>
|
|
</system>
|
|
</configuration>
|
|
</config>
|
|
|
|
syslog_config_replace: |
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<configuration>
|
|
<system>
|
|
<syslog>
|
|
<file>
|
|
<name>test_netconf_config</name>
|
|
<contents>
|
|
<name>any</name>
|
|
<any/>
|
|
</contents>
|
|
</file>
|
|
</syslog>
|
|
</system>
|
|
</configuration>
|
|
</config>
|