2016-10-28 19:50:29 +01:00
|
|
|
---
|
2018-01-08 17:58:47 +05:30
|
|
|
- debug: msg="START netconf/single.yaml on connection={{ ansible_connection }}"
|
2016-10-28 19:50:29 +01:00
|
|
|
|
|
|
|
# Ensure that when we change the hostname to `localhost` we cause a change
|
|
|
|
- name: setup
|
|
|
|
junos_config:
|
|
|
|
lines:
|
2017-01-09 17:21:04 +00:00
|
|
|
- set system host-name {{ inventory_hostname_short }}
|
2016-10-28 19:50:29 +01:00
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
- name: configure single command
|
|
|
|
junos_config:
|
|
|
|
lines:
|
|
|
|
- set system host-name localhost
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "'+ host-name localhost;' in result.diff.prepared"
|
|
|
|
|
|
|
|
- name: check single command idempotent
|
|
|
|
junos_config:
|
|
|
|
lines:
|
|
|
|
- set system host-name localhost
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
2017-07-11 09:52:53 +05:30
|
|
|
- name: confirm previous commit
|
|
|
|
junos_config:
|
|
|
|
confirm_commit: yes
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
2017-10-11 10:25:56 +05:30
|
|
|
- name: teardown for rollback test
|
|
|
|
junos_config:
|
|
|
|
lines:
|
|
|
|
- delete system syslog file test1
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
- name: Configure syslog file
|
|
|
|
junos_config:
|
|
|
|
lines:
|
|
|
|
- set system syslog file test1 any any
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-11-27 16:58:08 -06:00
|
|
|
- result.diff.prepared is search("\+ *file test1")
|
|
|
|
- result.diff.prepared is search("\+ *any any")
|
2017-10-11 10:25:56 +05:30
|
|
|
|
|
|
|
- name: Rollback junos config
|
|
|
|
junos_config:
|
|
|
|
rollback: 1
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-11-27 16:58:08 -06:00
|
|
|
- result.diff.prepared is search("\+ *file test1")
|
|
|
|
- result.diff.prepared is search("\+ *any any")
|
2017-10-11 10:25:56 +05:30
|
|
|
|
2016-10-28 19:50:29 +01:00
|
|
|
- name: teardown
|
|
|
|
junos_config:
|
|
|
|
lines:
|
2017-01-09 17:21:04 +00:00
|
|
|
- set system host-name {{ inventory_hostname_short }}
|
2016-10-28 19:50:29 +01:00
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
|
2018-01-08 17:58:47 +05:30
|
|
|
- debug: msg="END netconf/single.yaml on connection={{ ansible_connection }}"
|