mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ce541454e9
Fixes #40650 Fixes #40245 Fixes #41541 * Refactor netconf_config module as per proposal #104 * Update netconf_config module metadata to core network supported * Refactor local connection to use persistent connection framework for backward compatibility * Update netconf connection plugin configuration varaibles (Fixes #40245) * Add support for optional lock feature to Fixes #41541 * Add integration test for netconf_config module * Documentation update * Move deprecated options in netconf_config module
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
---
|
|
- debug: msg="START netconf_config junos/basic.yaml on connection={{ ansible_connection }}"
|
|
|
|
- include_vars: "{{playbook_dir }}/targets/netconf_config/tests/junos/fixtures/config.yml"
|
|
|
|
- name: syslog file config- setup
|
|
junos_config:
|
|
lines:
|
|
- delete system syslog file test_netconf_config
|
|
|
|
- name: configure syslog file
|
|
netconf_config:
|
|
content: "{{ syslog_config }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<name>test_netconf_config</name>' in result.diff.after"
|
|
|
|
- name: configure syslog file (idempotent)
|
|
netconf_config:
|
|
content: "{{ syslog_config }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: configure syslog file replace
|
|
netconf_config:
|
|
content: "{{ syslog_config_replace }}"
|
|
default_operation: 'replace'
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: test backup
|
|
netconf_config:
|
|
content: "{{ syslog_config }}"
|
|
backup: True
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "'backup_path' in result"
|
|
|
|
- name: syslog file config- teardown
|
|
junos_config:
|
|
lines:
|
|
- delete system syslog file test_netconf_config
|
|
|
|
- debug: msg="END netconf_config junos/basic.yaml on connection={{ ansible_connection }}"
|